-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
35 lines (32 loc) · 1.11 KB
/
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
<html>
<head>
<meta charset="UTF-8">
<title>Karaoke</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<audio id="audio" src="Bonnie Tyler - Total Eclipse of the Heart.mp3" preload="auto"></audio>
<button class="play">Start</button>
<button class="pause">Stop</button>
<div class="video-layer">
<div class="sequence off verse"></div>
<div class="sequence off chorus"></div>
<div class="sequence off breakdown"></div>
<div class="sequence off buildup"></div>
<div class="sequence off bridge"></div>
<div class="sequence off release"></div>
</div>
<div class="mask-layer"></div>
<div class="title-layer">
<!-- <a href="#" class="play">Play</a> -->
<div class="imagesLoaded"></div>
</div>
<div class="text-layer">
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="lyrics.js"></script>
<script src="main.js"></script>
</body>
</html>