-
Notifications
You must be signed in to change notification settings - Fork 0
/
relay.html
173 lines (153 loc) · 4.41 KB
/
relay.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!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>Relay</title>
<link rel="stylesheet" href="style.css">
<script src="ajax.js"></script>
<style>
.flex-container {
display: flex;
flex-direction: row;
padding: 2px 0;
margin-bottom: 10px;
}
.flex-container > .flex-item {
flex: auto;
}
.flex-container > .raw-item {
width: 40px;
padding-top: 4px;
}
.flex-container h4{
margin: 0;
}
.flex-container p{
margin: 0;
}
input[type=checkbox]{
height: 0;
width: 0;
visibility: hidden;
position: absolute;
}
label {
cursor: pointer;
text-indent: -9999px;
width: 40px;
height: 20px;
background: grey;
display: block;
border-radius: 20px;
position: relative;
}
label:after {
content: '';
position: absolute;
top: 1px;
left: 1px;
width: 18px;
height: 18px;
background: #fff;
border-radius: 18px;
transition: 0.2s;
}
input:checked + label {
background: #63bb40;
}
input:checked + label:after {
left: calc(100% - 1px);
transform: translateX(-100%);
}
label:active:after {
width: 22px;
}
/*
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
*/
</style>
<script>
function sendValue(id, value)
{
console.log(id, value);
}
window.onload = function(e){
var sw = document.querySelectorAll('.switch');
for(var i = 0; i<sw.length; i++)
{
sw[i].addEventListener('change', function(e2){
sendValue(e2.target.getAttribute('id'), e2.target.checked);
});
}
}
</script>
</head>
<body>
<div class="all">
<h3>Relay</h3>
<div class="form-item">
<div class="flex-container">
<div class="flex-item">
<h4>Input 1</h4>
<p>Connected to GPIO 14</p>
</div>
<div class="raw-item">
<input type="checkbox" class="switch" value="1" id="14" /><label for="14">Toggle</label>
</div>
</div>
<div class="flex-container">
<div class="flex-item">
<h4>Input 2</h4>
<p>Connected to GPIO 27</p>
</div>
<div class="raw-item">
<input type="checkbox" class="switch" value="1" id="27" /><label for="27">Toggle</label>
</div>
</div>
<div class="flex-container">
<div class="flex-item">
<h4>Input 3</h4>
<p>Connected to GPIO 26</p>
</div>
<div class="raw-item">
<input type="checkbox" class="switch" value="1" id="26" /><label for="26">Toggle</label>
</div>
</div>
<div class="flex-container">
<div class="flex-item">
<h4>Input 4</h4>
<p>Connected to GPIO 25</p>
</div>
<div class="raw-item">
<input type="checkbox" class="switch" value="1" id="25" /><label for="25">Toggle</label>
</div>
</div>
<div class="flex-container">
<div class="flex-item">
<h4>Input 5</h4>
<p>Connected to GPIO 33</p>
</div>
<div class="raw-item">
<input type="checkbox" class="switch" value="1" id="33" /><label for="33">Toggle</label>
</div>
</div>
<div class="flex-container">
<div class="flex-item">
<h4>Input 6</h4>
<p>Connected to GPIO 32</p>
</div>
<div class="raw-item">
<input type="checkbox" class="switch" value="1" id="32" /><label for="32">Toggle</label>
</div>
</div>
</div>
</div>
</body>
</html>