-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (123 loc) · 5.26 KB
/
index.html
File metadata and controls
150 lines (123 loc) · 5.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width,initial-scale=1" name="viewport">
<meta content="description" name="description">
<meta name="google" content="notranslate" />
<meta content="Mashup templates have been developped by Orson.io team" name="author">
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J307C3ZYJQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J307C3ZYJQ');
</script>
<link href="static/assets/images/planet-32.png" rel="icon">
<title>Theofanis Chatzidimitriou</title>
<link href="static/css/main.3f6952e4.css" rel="stylesheet">
<link href="static/css/style.css" rel="stylesheet">
<link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel = "stylesheet">
<script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
<script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script src="static/js/magic_mouse-1.2.1.cdn.min.js"></script>
<script src="static/js/nav.js"></script>
</head>
<body class="minimal">
<div id="site-border-left"></div>
<div id="site-border-right"></div>
<div id="site-border-top"></div>
<div id="site-border-bottom"></div>
<!-- Add your content of header -->
<header>
<nav class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbar-collapse" style="text-align:center;">
<ul class="nav navbar-nav ">
<li><a href="./index.html" title="" class="is-hover"><button class="my-btn magic-hover magic-hover__square">01 : Home</button></a></li>
<li><a href="./about.html" title=""><button class="my-btn magic-hover magic-hover__square">02 : About me</button></a></li>
<li><a href="./experience.html" title=""><button class="my-btn magic-hover magic-hover__square">03 : Experience</button></a></li>
<li><a href="./works.html" title=""><button class="my-btn magic-hover magic-hover__square">04 : Works</button></a></li>
<li><a href="./contact.html" title=""><button class="my-btn magic-hover magic-hover__square">05 : Contact</button></a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Add your site or app content here -->
<div class="hero-full-container background-image-container white-text-container" style="background-image: url('static/assets/images/thumbnail.jpg')">
<div class="video-container">
<video autoplay loop id="background-video">
<source src="static/assets/videos/hero-vaporwave-sound.mp4" type="video/mp4" />
</video>
</div>
<div class="volume-level-container">
<span id="volume-level-label">20/100</span>
<!-- <input type="range" id="volume-level-input" min="0" max="1" step="0.1" value="0.2" >onchange="updateVolumeLevel(this)" -->
<div id="volume-level-slider"></div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="hero-full-wrapper">
<div class="text-content">
<h1>Hello,<br>
<span id="typed-strings">
<span id="#strings">I'm Theofanis Chatzidimitriou</span>
<span>Computer Science + Marketing student</span>
<span>Working in Marketing</span>
</span>
<span id="typed"></span>
</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
options = {
"cursorOuter": "circle-basic",
"hoverEffect": "circle-move",
"hoverItemMove": false,
"defaultCursor": true,
"outerWidth": 41,
"outerHeight": 41
};
magicMouse(options);
document.addEventListener("DOMContentLoaded", function (event) {
type();
movingBackgroundImage();
});
// document.getElementById('volume-level-input').addEventListener("change", updateVolumeLevel('volume-level-input'));
document.getElementById('background-video').volume=0.2;
console.log('Video sound level:',document.getElementById('background-video').volume);
$( function() {
$( "#volume-level-slider" ).slider({
// range:true,
value:20,
min: 0,
max: 100,
slide: function( event, ui ) {
// update video volume
$( "#background-video" ).prop("volume", ui.value/100);
// update volume level label
document.getElementById('volume-level-label').textContent=ui.value+"/100";
console.log('volume:',ui.value,document.getElementById('background-video').volume);
}
});
});
</script>
<script type="text/javascript" src="static/js/main.70a66962.js"></script></body>
</html>