-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1018 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8">
<title>mess with Z or/and X</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, user-scalable=0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<style type="text/css">
body { margin:0; padding:0; background: #000; display: table-cell; vertical-align: middle; }
div.container { top: 0; left: 0; width: 100%; height: 100%; position: absolute; display: table; }
div.sub_container { display: table-cell; vertical-align: middle; }
canvas { display: block; margin: 0 auto; background: #fff;}
img { display: none; }
</style>
</head>
<body>
<div class="container">
<div class="sub_container">
<canvas id="sky">No canvas support, eh?</canvas>
</div>
</div>
<img id="snowflake" src="flake04.gif" />
<script src="script.js"></script>
</body>
</html>