-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.06 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
33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Thach Hoang">
<meta name="description" content="Watch paint dry.">
<title>drippingwall</title>
<!-- https://github.com/thachhoang/drippingwall -->
<style>
html, body {
width: 100%;
height: 100%;
margin: 0; padding: 0;
overflow: hidden;
font-family: sans-serif;
font-size: 15px;
}
#gauge {
color: white;
position: absolute;
top: 0; left: 0;
padding: 5px;
}
</style>
<script src="//cdn.polyfill.io/v2/polyfill.min.js"></script>
</head>
<body onload="init()">
<canvas id="canvas">Your browser does not support HTML5 Canvas.</canvas>
<div id="gauge">0</div>
<script type="text/javascript" src="js/mobile.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>