-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
32 lines (26 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>testble</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.4/material.indigo-pink.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.4/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<div id="greeting"></div>
<!-- Accent-colored raised button with ripple -->
<div class="scan">
<button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" id="scan">
Scan
</button><br>
<div id="progress" class="mdl-progress mdl-js-progress mdl-progress__indeterminate progress" style="display: none;"></div>
</div>
<div id="controls" style="display: none;">
<div class="slider">R:<input class="mdl-slider mdl-js-slider" type="range" min="0" max="255" value="127" id="sliderR"/></div>
<div class="slider">G:<input class="mdl-slider mdl-js-slider" type="range" min="0" max="255" value="127" id="sliderG"/></div>
<div class="slider">B:<input class="mdl-slider mdl-js-slider" type="range" min="0" max="255" value="127" id="sliderB"/></div>
</div>
<script src="dist/main.js"></script>
</body>
</html>