-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Update CSS Varibales with JS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Update <span>CSS</span> Variables with <span>JS</span></h1>
</header>
<main>
<section class="controles" data-contorl>
<div>
<label for="spacing">Spacing:</label>
<input type="range" id="spacing" name="space" min="0" max="100" value="0" data-sizing="px">
</div>
<div>
<label for="blur">Blur:</label>
<input type="range" id="blur" name="blur" min="0" max="100" value="00" data-sizing="px">
</div>
<div>
<label for="SColor">Spacing Color:</label>
<input type="color" id="SColor" name="color" value="#ffffff" data-sizing="">
</div>
</section>
<section class="myIdImg">
<img src="images/boma raining naure tree.jpeg" alt="photo nature" id="myImg">
</section>
</main>
<script src="index.js"></script>
</body>
</html>