-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.html
66 lines (53 loc) · 2.55 KB
/
button.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="mdl/material.min.css">
<link type="text/css" rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>BBBTAS</title>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">BeagleBone Black Task Automation System</span>
<div class="mdl-layout-spacer"></div>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Menu</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="">Button</a>
<a class="mdl-navigation__link" href="">Potentiometer</a>
<a class="mdl-navigation__link" href="">Photoresistor</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<!-- <button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" id="button-0">
Button
</button> -->
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect custom-switch" for="switch-1">
<input type="checkbox" id="switch-1" class="mdl-switch__input" checked>
<span class="mdl-switch__label">clicky1</span>
</label>
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect custom-switch" for="switch-2">
<input type="checkbox" id="switch-2" class="mdl-switch__input" checked>
<span class="mdl-switch__label">clicky2</span>
</label>
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect custom-switch" for="switch-3">
<input type="checkbox" id="switch-3" class="mdl-switch__input" checked>
<span class="mdl-switch__label">clicky3</span>
</label>
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect custom-switch" for="switch-4">
<input type="checkbox" id="switch-4" class="mdl-switch__input" checked>
<span class="mdl-switch__label">clicky4</span>
</label>
</div>
</main>
</div>
<script src="mdl/material.min.js"></script>
<script src="javascript/buttonscript.js"></script>
</body>
</html>