-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
24 lines (22 loc) · 1010 Bytes
/
Index.html
File metadata and controls
24 lines (22 loc) · 1010 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
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<meta id="viewport" content="width=device-width, initial-scale=1.0">
<title>Play with CSS</title>
<link rel="stylesheet" href="Index.css">
</head>
<body>
<h1> A Css Variable Controller made from JS DOM</h1>
<p div class="centertext">Experimental! More than Three Slider were causing strange behavior</p>
<div class="controls">
<label for="blur-slider">Blur</label>
<input type="range" id="blur-slider" min="0" max="10" value="0" data-sizing = "px">
<label for="bright-slider">Brightness</label>
<input type="range" id="bright-slider" min="50" max="150" value="100" data-sizing="%">
<label for="grayscale-slider">GrayScale</label>
<input type="range" id="grayscale-slider" min="0" max="100" value="0" data-sizing="%">
</div>
<img src = "IMG_20240407_190721.jpg" class="center">
<script src = "Index.js"></script>
</body>
</html>