-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
58 lines (56 loc) · 2.1 KB
/
index.htm
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<title>🐧Pengo🐧</title>
<link rel="stylesheet" href="menu.css">
<style>
body {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<canvas id="mieps" width="300px" height="300px"></canvas>
<div id="menuToggle" class="menuToggle" onclick="toggleMenu()">
</div>
<div class="menu" id="menu">
<label class="label">
Inverse overlay
<label class="switch">
<input type="checkbox" onclick="toggleDirection()">
<span class="slider round"></span>
</label>
</label>
<label class="label">
Inverse spiral direction
<label class="switch">
<input type="checkbox" onclick="invertSpiralDirection()">
<span class="slider round"></span>
</label>
</label>
<label class="label">
Max spirals
<input type="range" min="1" max="1000" value="80" oninput="changeMaxSpirals(this.value)">
</label>
<label class="label">
Num spirals
<input id="numSpirals" type="range" min="1" max="1000" value="1" oninput="changeNumSpirals(this.value)">
</label>
<label class="label">
Breathing frames
<input type="range" min="16" max="600" value="300" oninput="changeBreathingFrames(this.value)">
</label>
<label class="label">
Rotation speed
<input type="range" min="0.1" max="10" value="3" step="0.01" oninput="changeSpiralSpeed(this.value)">
</label>
</div>
<script src="menu.js" type="text/javascript"></script>
<script src="hypno.js" type="text/javascript"></script>
<script>
init();
</script>
</body>
</html>