-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
84 lines (64 loc) · 1.62 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scoped CSS Variables and JS</title>
</head>
<body>
<h2>Update CSS Variables with <span class='hl'>JS</span></h2>
<div class="controls">
<label for="spacing">Spacing:</label>
<input type="range" name="spacing" min="10" 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="base">Base Color</label>
<input type="color" name="base" value="#ffc600">
</div>
<img src="./Death_to_stock_BMX1_10.jpg">
<style>
:root {
--spacing: 10px;
--blur: 10px;
--base: white;
}
body {
text-align: center;
}
body {
background: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
font-weight: 100;
font-size: 50px;
}
.controls {
margin-bottom: 50px;
}
input {
width:100px;
}
img {
width: 95%;
max-width: 900px;
height: auto;
background-color: var(--base);
padding: var(--spacing);
filter: blur(var(--blur));
}
.hl {
color: var(--base);
}
</style>
<script>
// Reutrns a listNode, it is a atypeof an array with less functionality
const inputs = document.querySelectorAll('.controls input');
function handleUpdate() {
const data = this.value,
suffix = this.dataset.sizing || '',
type = this.name;
document.documentElement.style.setProperty(`--${type}`, data + suffix);
}
inputs.forEach(input => input.addEventListener('change', handleUpdate));
</script>
</body>
</html>