-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
33 lines (28 loc) · 871 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Web Audio Clock</title>
<link rel="stylesheet" type="text/css" href="bundle.css">
</head>
<body>
<div id="time-started"></div>
<p><input id="active-raf" type="button"
value="Measure with requestAnimationFrame">
<input id="active-timeout" type="button"
value="Measure with setTimeout">
<input id="active-once" type="button"
value="Measure once">
</p>
<div id="sample-rate"></div>
<div id="output-latency"></div>
<div id="base-latency"></div>
<div id="date-time"></div>
<div id="audio-time"></div>
<div id="frame-time"></div>
<div id="performance-time"></div>
<p id="measure"></p>
<script src="AudioContextMonkeyPatch.js"></script>
<script src="bundle.js"></script>
</body>
</html>