-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
57 lines (51 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Le petit train </title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
</head>
<body>
<section class="left">
<header>
<h1 id="site-title">Le petit train</h1>
<p class="subtitle">Mettre à jour les variables CSS avec JS</p>
</header>
<div class="parameters">
<div class="image">
<h3>Image</h3>
<div class="param grayscale">
<label for="grayscale">Niveaux de gris</label>
<input type="range" name="grayscale" min="0" max="100" value="0" data-sizing="%">
</div>
<div class="param hue">
<label for="hue">Teinte</label>
<input type="range" name="hue" min="0" max="360" value="0" data-sizing="deg">
</div>
</div>
<div class="shadow">
<h3>Ombre</h3>
<div class="param spacing">
<label for="spacing">Espacement</label>
<input type="range" name="spacing" min="10" max="60" value="10" data-sizing="px">
</div>
<div class="param blur">
<label for="blur">Brouiller</label>
<input type="range" name="blur" min="0" max="20" value="0" data-sizing="px">
</div>
<div class="param base">
<label for="base">Couleur de base</label>
<input type="color" name="base" value="#253a3b">
</div>
</div>
</div>
</section>
<section class="right">
<img src="assets/images/yiran-ding.jpg" alt="The Little Train" id="sample-image">
</section>
<footer>
<p>© Youcode-Youssoufia</p>
</footer>
</body>
</html>