-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (60 loc) · 2.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Toggle experiments</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/kickoff-old-ie.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="css/kickoff.css">
<!--<![endif]-->
<script src="/js/libs/modernizr.min.js"></script>
</head>
<body>
<h2 class="headingOuter">Day/Night Toggle</h2>
<div class="toggle toggle--daynight">
<input type="checkbox" id="toggle--daynight" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--daynight"><span class="toggle--feature"></span></label>
</div>
<!-- https://dribbble.com/shots/1836048-Emojis-Pt-1?list=searches&offset=3 -->
<h2 class="headingOuter">Like Toggle</h2>
<div class="toggle toggle--like">
<input type="checkbox" id="toggle--like" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--like"><span class="toggle--feature"></span></label>
</div>
<h2 class="headingOuter">Shadow Effect Toggle</h2>
<div class="toggle toggle--text">
<input type="checkbox" id="toggle--text" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--text" data-label-on="on" data-label-off="off"></label>
</div>
<h2 class="headingOuter">3d Power button toggles</h2>
<div class="toggle toggle--push">
<input type="checkbox" id="toggle--push" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--push" data-label-on="on" data-label-off="off"></label>
</div>
<div class="toggle toggle--push toggle--push--glow">
<input type="checkbox" id="toggle--push--glow" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--push--glow" data-label-on="on" data-label-off="off"></label>
</div>
<h2 class="headingOuter">Physical Knob Toggle Switch</h2>
<div class="toggle toggle--knob">
<input type="checkbox" id="toggle--knob" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--knob"><span class="toggle--feature" data-label-on="on" data-label-off="off"></span></label>
</div>
<h2 class="headingOuter">Sliding Switch Toggle</h2>
<div class="toggle toggle--switch">
<input type="checkbox" id="toggle--switch" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--switch"><span class="toggle--feature" data-label-on="on" data-label-off="off"></span></label>
</div>
<h2 class="headingOuter">Neon Text toggle</h2>
<div class="toggle toggle--neon">
<input type="checkbox" id="toggle--neon" class="toggle--checkbox">
<label class="toggle--btn" for="toggle--neon" data-label-on="on" data-label-off="off"></label>
</div>
</body>
</html>