-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage.html
More file actions
32 lines (21 loc) · 915 Bytes
/
Copy pathimage.html
File metadata and controls
32 lines (21 loc) · 915 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="image.js"></script>
<title>Practice with CSS Variables</title>
</head>
<body>
<h3> Let's Play with CSS variables and <span class="HL"> JS </span></h3>
<label for="spacing"> Spacing </label>
<input id="spacing" type="range" min=10 max=100 value=10 data-units="px" data-parameter="spacing">
<label for="blurSlider"> Blur </label>
<input id="blurSlider" type="range" min=0 max=100 value=0 data-units="px" data-parameter="blur">
<label for="colorPicker"> Base Color </label>
<input id="colorPicker" type="color" value="#ffff00" data-units="" data-parameter="colorVariable">
<hr/>
<img src="https://source.unsplash.com/7bwQXzbF6KE/800x500">
</body>
</html>