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
|
<html>
<head>
<title>honeycomb</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <style>
html,body { margin: 0; padding: 0; width: 100%; height: 100%; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 13px;
background-color: #333;
}
#container {
position: absolute; top: 0; left: 0;
width: 100%; height: 100%;
}
.desktop {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
svg {
transition: all 0.5s ease;
cursor: pointer;
}
#buttons {
position: absolute;
bottom: 0; left: 0;
width: 100%;
text-align: center;
}
#buttons button {
margin: 10px;
font-size: 18px;
border: 2px solid;
background: #000;
color: #bbb;
font-weight: bold;
padding: 5px;
}
#hertz {
font-size: 36px;
padding: 10px;
color: #fff;
font-weight: bold;
}
@media only screen and (max-device-width: 800px) {
html,body {
margin: 0;
padding: 0;
}
}
</style>
</head>
<body>
<div id="container"></div>
<div id="buttons">
<div id="hertz"></div>
<button id="frequency">frequency</button>
<button id="color">color</button>
<button id="brightness">brightness</button>
</div>
</body>
<script>
var s = document.createElement('script');
s.setAttribute('src','bundle.js?' + Date.now());
document.body.appendChild(s)
</script>
</html>
|