-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (26 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
33 lines (26 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Updating</title>
</head>
<body>
<h2>Hello :)</h2>
<h2>This is our dynamic variables:</h2>
<div id="app"></div>
<script type="module" src="/main.js"></script>
<div class="controls">
<label for="spacing">Spacing:</label>
<input type="range" name="spacing" min="0" max="200" value="10" data-sizing="px">
<label for="blur">Blur:</label>
<input type="range" name="blur" min="0" max="25" value="10" data-sizing="px">
<label for="border">Border Radius:</label>
<input type="range" name="border" min="0" max="200" value="0" data-sizing="px">
<label for="base">Base Color:</label>
<input type="color" name="base" value="#7fffd4">
</div>
<img src="https://cointimes.com.br/wp-content/uploads/2021/11/bigstock-Huge-Humpback-Whale-Jumping-Ab-430461934-1-1200x675.jpg" width="700px" height="350px">
</body>
</html>