-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (40 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS-P3</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Update CSS variable with JS</h2>
<div class="controls">
<label for="spacing">Spacing:</label>
<input type="range" id="spacing" min="10" max="200" value="10" name="spacing" data-sizing="px">
<label for="blur">Blur:</label>
<input type="range" id="blur" name="blur" min="0" max="25" value="10" data-sizing="px">
<label for="base">Base Color</label>
<input type="color" name="base" id="base" value="#ffc600">
<label for="height"> Height </label>
<input type="range" name="height" id="height" min="10" max="100" data-sizing="vh" value="10">
<label for="rotate"> Rotate </label>
<input type="range" name="rotate" id="rotate" min="0" max="360" data-sizing="deg" value="0">
<label for="radius"> Radius </label>
<input type="range" name="radius" id="radius" min="0" max="100" data-sizing="px" value="0" >
</div>
<img src="82528602_845598082535414_6936156667733234811_n.jpg" alt="">
</body>
<script>
var inputs = document.querySelectorAll(".controls input ");
function handler(){
const suffix =this.dataset.sizing || "";
document.documentElement.style.setProperty(
`--${this.name}`,
this.value+suffix
);
}
inputs.forEach(input=>input.addEventListener("change",handler));
inputs.forEach(input=>input.addEventListener("mousemove",handler));
</script>
</html>