-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (92 loc) · 4.14 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="./img/display.svg" property="og:image" />
<meta content="Frums - Wavetapper" property="og:title" />
<meta content="An interactive web version of the video for Wavetapper by Frums." property="og:description" />
<meta content="An interactive web version of the video for Wavetapper by Frums." name="description" />
<link rel="icon" type="image/x-icon" href="/img/favicon/15.svg" />
<title>Wavetapper</title>
<link rel="stylesheet" href="css/Mulish.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body onload="load()">
<header>
<section id="cube-section">
<cube id="cube">
<face class="f1"></face>
<face class="f2"></face>
<face class="f3"><img src="img/maincube2.png"></face>
<face class="f4"><img src="img/maincube2.png"></face>
<face class="f5"><img src="img/maincube1.png"></face>
<face class="f6"><img src="img/maincube1.png"></face>
</cube>
</section>
<section id="info">
<h1>Frums - Wavetapper</h1>
<h2>Web Interactive MV</h2>
<p>Based on <a href="https://www.youtube.com/watch?v=-lRPEny5jug">Frums - Wavetapper [BGA]</a></p>
<p>In order to use this site, please enlarge this window and <b>allow Popups and Redirects</b>.</p>
</section>
</header>
<main>
<p>This site recreates the video of Frums - Wavetapper using various popups for each cube. </p>
<section>
<h3>Popup Info</h3>
<ul>
<li>Left click + Drag: Rotate Cube</li>
<li>Middle click: Highlight Cube (in Highlight Mode)</li>
<li>Right click: Mute Cube</li>
</ul>
</section>
<section id="control-panel">
<h2>Control Panel</h2>
<div>
<button id="calibrate" onclick="DeviceInfo.calibrate()">Calibrate</button>
<label for="calibrate">Gets measurements about popups and the screen. Please re-calibrate if the screen
resolution changes.</label>
</div>
<div>
<div class="button">
<label for="highlightmode">Highlight Mode: </label>
<input type="checkbox" name="" id="highlightmode">
</div>
<label for="highlightmode">Enables an alternative mode that lets you highlight various blocks to enlarge
them.</label>
</div>
<div>
<button id="load" onclick="Blocks.load()" disabled>Load</button>
<label for="load">Load all popups. Due to how the audio works, you will need to click on each popup to
lead them individually.</label>
</div>
<div>
<div class="button">
<label for="autoplay">Autoplay: </label>
<input type="checkbox" id="autoplay">
</div>
<label for="autoplay">The song automatically plays once all blocks are loaded.</label>
</div>
<div>
<button id="play" onclick="Blocks.play()" disabled>Play</button>
<label for="play">Manually play the song.</label>
</div>
<div>
<button id="terminate" onclick="Blocks.terminate()" disabled>Terminate</button>
<label for="terminate">Close all popups.</label>
</div>
<div>
<button id="tick" onclick="Blocks.tick()" disabled>Metronome Test</button>
<label for="tick">Test to see if the popups are synchronized.</label>
</div>
<div>
<button id="spin" onclick="Blocks.spin()" disabled>Spin</button>
<label for="spin">Self-explanatory.</label>
</div>
</section>
</main>
<script src="js/prototype.js"></script>
<script src="js/script.js"></script>
</body>
</html>