-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (45 loc) · 1.4 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
<html>
<head>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<title>Moire Pattern</title>
</head>
<body>
<div class="boxed">
<div class="conatiner">
<div class="options">
<div class="bong">
<h2>Angle</h2>
<input type="range" id="myRange" value="90" max="360" min="0" style="width:300px;">
<span id="currentValue">0</span>
</div>
<br>
<div class="bong">
<h2>Duration</h2> (in Seconds)
<input type="range" id="mySpeed" value="1" max="60" min="1"><br>
<span id="currentSpeed">1</span>
</div>
<br>
<div class="bong">
<h2>Size</h2> (in Pixels)
<input type="range" id="myPixel" value="5" max="100" min="1"><br>
<span id="currentPixel">1</span>
</div>
<br>
<div class="bong" id="radioButtonContainerId" >
<h2>Shape</h2><br>
<input type="radio" id="shaped" name="shape" value="square" checked >Square<br>
<input type="radio" id="shaped" name="shape" value="triangle" >Triangle<br>
<input type="radio" id="shaped" name="shape" value="circle" >Circle<br>
<input type="radio" id="shaped" name="shape" value="lines" >Lines<br>
</div>
</div>
</div>
<button onclick="turny()" class="turn">ROTATE</button>
<button onclick="history.go(0)" class="cleer">CLEAR</button>
</div>
<div class="bg"></div>
</body>
<script src="script/script.js">
</script>
</html>