-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (66 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Canvas Bouncing Circles</title>
<link rel="stylesheet" href="./src/styles.css?v=4">
<script src="./dist/index.js?v=4" defer type="module"></script>
</head>
<body>
<section class="hero-header">
<canvas class="canvas"></canvas>
<!-- <div class="heading-container">
<h1>Canvas Bouncing Circles</h1>
<p> Bouncing circles on a suspended canvas by <span class="semibold author">David
Oyinbo</span>, responding to viewers' movements for an immersive experience.</p>
<p><span class="action-pointer semibold">"Click anywhere to scatter."</span> <br /></p>
<a href="#">View Profile</a>
</div> -->
<div class="settings-container">
<div>
<h5 class="settings-container-heading">Select Shape</h5>
<div>
<label class="">
<input type="radio" name="shape" value="circle" />
<div>Circle</div>
</label>
<label class="">
<input type="radio" name="shape" value="infinity" />
<div>Infinity</div>
</label>
<label class="">
<input type="radio" name="shape" value="black-hole" />
<div>Black Hole</div>
</label>
<label class="">
<input type="radio" name="shape" value="hour-glass" />
<div>Hour Glass</div>
</label>
</div>
</div>
<div>
<h5 class="settings-container-heading">Select Shape Behaviour</h5>
<div>
<label class="">
<input type="radio" name="behaviour" value="default" id="behaviour-radio-button-default" />
<div>Default</div>
</label>
<label class="">
<input type="radio" name="behaviour" value="from-edge" id="behaviour-radio-button-from-edge" />
<div>From Edge</div>
</label>
<label class="">
<input type="radio" name="behaviour" value="from-corner" id="behaviour-radio-button-from-corner" />
<div>From Corner</div>
</label>
<label class="">
<input type="radio" name="behaviour" value="from-corner-through-center" id="behaviour-radio-button-from-corner-through-center" />
<div>From Corner Through Center</div>
</label>
</div>
</div>
</div>
</section>
</body>
</html>