forked from JDLPro/Benham
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Doodle Disk</title>
<!-- <link rel="icon" href="https://cdn.glitch.com/e42fe98f-5518-4c7d-9a5b-4ad8a89a187d%2Fblackwhite_icon.jpg?v=1586384371591" samesite="none" secure> -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<!-- import phaser 3.17 -->
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script>
</head>
<body>
<!-- adding responsive columns and elements https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_two_columns_responsive -->
<div id="contentBox" style="margin:0px auto; width:100%">
<!-- columns divs, float left, no margin so there is no space between column, width=1/3 -->
<div id="column1">
<h1>Doodle Disk</h1>
<p>
<!-- add text here to describe -->
</p>
<div>
<p class="controls">
Rotation Speed
<div class="slidecontainer" id="rotatespeed">
<input type="range" min="0" max="45" value="1" class="slider" id="rspdrng"> <spac id="rspd"></spac>
</div>
</p>
<p class="controls">
Arc Amount
<div class="slidecontainer" id="arcamount">
<input type="range" min="2" max="90" value="7" class="slider" id="arca"> <span id="arca"></span>
</div>
</p>
<!-- For color picking -- still in development -->
<!-- <p class="controls">
Color Wheel
<div class="slidecontainer" id="arcamount">
<input type="range" min="0" max="255" value="145" class="slider" id="colorwheel"> <span id="colorwheel"></span>
</div>
</p> -->
</div>
<div id="column2">
<script src="/script.js" defer></script>
</div>
<div id="revspdcol">
<button id="revspd"> Reverse Direction </button>
</div>
</div>
</div>
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js"></script>
</body>
</html>