-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
32 lines (32 loc) · 1.13 KB
/
demo.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<script type="text/javascript" src="lib/flod-compiled.js"></script>
<script type="text/javascript" src="lib/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="lib/modules.js"></script>
<script type="text/javascript" src="demo.js"></script>
</head>
<body>
<img src="./assets/logo.png">
<img class="js-play" src="./assets/play.png">
<img class="js-pause" src="./assets/pause.png">
<img class="js-stop" src="./assets/stop.png">
<div><strong class="js-title"></strong></div>
<div class="js-subtitle"></div>
<div>
<span class="js-time-current">00:00</span>
/
<span class="js-time-total">00:00</span>
</div>
<div style="width: 400px; background-color: #eeeeee; position: relative">
<div class="js-position" style="position: absolute; left: 50%">
●
</div>
<hr/>
</div>
<small>by Grzegorz Gajos, based on Christian Corti's 'FLOD'</small>
<small>AHX/HVL replayer by Passing_by</small>
</body>
</html>