Skip to content

Commit ea39218

Browse files
committed
re-adding
1 parent b97963e commit ea39218

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

03 - CSS Variables/index.html

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Scoped CSS Variables and JS</title>
6+
</head>
7+
<body>
8+
<h2>Update CSS Variables with <span class='hl'>JS</span></h2>
9+
10+
<div class="controls">
11+
<label for="spacing">Spacing:</label>
12+
<input type="range" name="spacing" min="10" max="200" value="10" data-sizing="px">
13+
14+
<label for="blur">Blur:</label>
15+
<input type="range" name="blur" min="0" max="25" value="10" data-sizing="px">
16+
17+
<label for="base">Base Color</label>
18+
<input type="color" name="base" value="#ffc600">
19+
</div>
20+
21+
<img src="https://source.unsplash.com/7bwQXzbF6KE/800x500">
22+
23+
<style>
24+
:root {
25+
--base: #ffc600;
26+
--spacing: 10px;
27+
--blur:10px;
28+
}
29+
30+
img {
31+
padding: var(--spacing);
32+
filter: blur(var(--blur));
33+
background: var(--base);
34+
}
35+
36+
h1 {
37+
color: var(--base);
38+
}
39+
40+
body {
41+
text-align: center;
42+
}
43+
44+
body {
45+
background: #193549;
46+
color: white;
47+
font-family: 'helvetica neue', sans-serif;
48+
font-weight: 100;
49+
font-size: 50px;
50+
}
51+
52+
.controls {
53+
margin-bottom: 50px;
54+
}
55+
56+
a {
57+
color: var(--base);
58+
text-decoration: none;
59+
}
60+
61+
input {
62+
width:100px;
63+
}
64+
</style>
65+
66+
<script>
67+
const inputs = document.querySelectorAll('.controls input')
68+
69+
function handleUpdate() {
70+
const suffix = this.dataset.sizing || "";
71+
document.documentElement.style.setProperty(`--${this.name}`, this.value + suffix)
72+
}
73+
74+
inputs.forEach(input => input.addEventListener('change', handleUpdate));
75+
inputs.forEach(input => input.addEventListener('mousemove', handleUpdate));
76+
77+
</script>
78+
79+
</body>
80+
</html>

0 commit comments

Comments
 (0)