-
Notifications
You must be signed in to change notification settings - Fork 0
/
once.html
33 lines (31 loc) · 932 Bytes
/
once.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 lang="en">
<head>
<!--[if lt IE 9]>
<script src="static/js/vendor/html5shiv.js"></script>
<![endif]-->
<title>Once</title>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0">
<style>
body,
html {
padding:0;
margin:0;
background:#000000;
text-align:center;
}
canvas {
background:#FFFFFF;
}
</style>
</head>
<body>
<canvas id="canvas_main"></canvas>
<!-- Grab Google-hosted jQuery. Fall back to locally saved file if necessary. -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="static/js/vendor/jquery-1.10.2.min.js">\x3C/script>')</script>
<script src="static/js/once_data.js"></script>
<script src="static/js/once.js"></script>
</body>
</html>