-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (53 loc) · 2.08 KB
/
Copy pathindex.html
File metadata and controls
57 lines (53 loc) · 2.08 KB
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
<!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>Research UI</title>
<link rel="stylesheet" href="styles/app.css">
</head>
<body>
<h1>Recherches UI</h1>
<main>
<ul class="demo__list">
<li class="demo__item">
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<p>Switch Horizontal</p>
</li>
<li class="demo__item">
<label class="switch vertical">
<input type="checkbox" class="vertical">
<span class="slider vertical"></span>
</label>
<p>Switch Vertical</p>
</li>
<li class="demo__item">
<div id="knob" class="knob">
<i class="cursor"></i>
</div>
<p style="color: red;">Knob (WIP) <br> TODO: au clique, pouvoir tourner le curseur</p>
<!-- <p style="color: red; text-align: center;">TODO: au clique, pouvoir tourner le curseur</p> -->
</li>
<li class="demo__item">
<div class="console">
<p id="typedtext" class="text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae ab tempore, blanditiis quod delectus minus veniam velit nam et odio maiores, perferendis eos saepe. Obcaecati consequatur nulla dolor dolorem dolore.</p>
</div>
<p>Console</p>
</li>
<li class="demo__item"></li>
<li class="demo__item"></li>
<li class="demo__item"></li>
<li class="demo__item"></li>
<li class="demo__item"></li>
<li class="demo__item"></li>
</ul>
</main>
<script src="js/index.js"></script>
<script src="js/knob.js"></script>
<script src="js/console.js"></script>
</body>
</html>