-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (42 loc) · 1.57 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
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ConsoleFun - Daft Punk "Harder Better Faster Srtronger"</title>
<link rel="stylesheet" href="http://normalize-css.googlecode.com/svn/trunk/normalize.min.css" />
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.14.1/build/cssreset/cssreset-min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<article>
<hgroup>
<h1>Console Fun</h1>
<h2>Not another example of data output</h2>
</hgroup>
<div id="switcher" class="show-confirm">
<section id="confirm">
<p>You must open your browser's console window to watch Console Fun.</p>
<p>Confirm that you've done so by typing the code you see in your console here:</p>
<input type="text" id="code-input">
</section>
<section id="launch">
<p>Now you may press the "play" button.</p>
<p>You also may adjust lyrics timing offset by the slider.</p>
<div class="player-container">
<button id="play-btn">▶</button>
<audio preload="auto" id="player">
<source src="daft_punk_-_harder_better_faster_stronger.ogg" type="audio/ogg">
<source src="daft_punk_-_harder_better_faster_stronger.mp3" type="audio/mp3">
Ololo
</audio>
</div>
<input id="offset-input" type="range" min="0" max="200" step="20" value="0" />
<p>Offset: <span id="offset-value">0</span> ms</p>
</section>
</div>
</article>
<script src="consolefun-effect-custom1.js"></script>
<script src="consolefun.js"></script>
<script src="script.js"></script>
</body>
</html>