-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 979 Bytes
/
index.html
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
<!DOCTYPE html>
<head>
<title>Bike Game Demo</title>
<link href="css/style.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
</head>
<body>
<div id="overlay">
<div id="top-wrap">
<h1 id="total-dist">0 m</h1>
<h3 id="name-points">Score</h3>
<h1 id="total-points">0</h1>
</div>
<div class="center">
<div id="text-wrap">
<h1 id="base-text"> </h1>
<h2 id="secondary-text"> </h2>
</div>
<h1 id="velocity">0 km/h</h2>
</div>
<div id="distance-text-left">
<p>Distance</p>
</div>
<div id="distance-text-right">
<p>950 m</p>
</div>
<div id="progress-wrap">
<progress id="distance-bar" value="1" max="100"></progress>
</div>
</div>
<div id="vid-wrap">
<video id="bgvid">
<source src="media/test_480.mp4" type="video/mp4">
</video>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/video.js"></script>
</body>