-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1002 Bytes
/
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
33
34
35
36
37
38
39
40
<html>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,minimal-ui">
<title>continuous time</title>
<head>
<style>
.container {
padding: 0;
margin: 0;
transform: translateZ(0);
}
.range {
display: inline-block;
font-size: 14px;
line-height: 1.5;
}
.range > * {
vertical-align: middle;
}
</style>
</head>
<body>
<div id="viewport">
<div class="container">
</div>
<div class="controller">
<button id="restart">restart</button>
<div class="range">
<label for="frequency">FPS:60</label><input type="range" id="frequency" min="5" max="60" step="5"
value="60">
</div>
</div>
<div id="log"></div>
</div>
<script src="./dist/bundle.js"></script>
</body>
</html>