forked from lionello/nodemcu-httpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.html
50 lines (43 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- <meta name="viewport" content="width=devicewidth, minimal-ui"> -->
<!-- for ios 7 style, multi-resolution icon of 152x152 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-barstyle" content="black-translucent">
<!-- <link rel="apple-touch-icon" href="icon-152.png"> -->
<!-- for Chrome on Android, multi-resolution icon of 196x196 -->
<meta name="mobile-web-app-capable" content="yes">
<!-- <link rel="shortcut icon" sizes="196x196" href="icon-196.png"> -->
<title>SoundSwarm - Button mode</title>
<link rel="stylesheet" type="text/css" href="css/normalize.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body id="button-mode">
<div id="wrapper">
<div id="button-container">
<div id="button">
<div class="circle"></div>
</div>
</div>
<div id="controls-container">
<div id="button-set-3" class="button-group">
<div id="switch-UI" class="icon">
<img src="assets/icon-switch.png" />
</div>
</div>
</div>
<!-- <div id="speed-container">
<div id="speed-value" >value</div>
<input type="range" min="10" max="100" step="10" value="40" data-orientation="vertical" data-rangeslider>
</div> -->
</div>
<script type="text/javascript" src="js/hammer.min.js"></script>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/rangeslider.min.js"></script>
<script type="text/javascript" src="js/jquery.hammer.min.js"></script>
<script type="text/javascript" src="js/default.min.js"></script>
</body>
</html>