-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) Β· 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>patternistic</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<div class="input-box">
<label for="circle-size">Size of the Particle</label>
<input title="circle-size" value="3" min="1" max="6" step="1" type="range" name="circle-size" id="circleSize">
</div>
<div class="input-box">
<label for="trailing-length">Trailing Length</label>
<input title="trailing-length" value="300" min="100" max="700" step="50" type="range" name="trailing-length" id="trailingLength">
</div>
<div class="input-box">
<label for="number-of-dots">Number of Particles</label>
<input title="number-of-dots" value="50" min="0" max="200" step="10" type="range" name="number-of-dots" id="numberOfDots">
</div>
</header>
<main>
<p class="none">Please use Desktop for the best experience of these hover effects.</p>
</main>
</body>
</html>