forked from bitbof/webchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Webchemy</title>
<META name="description" content="Webchemy is a cross-platform web drawing app that recreates some of Alchemy's features.">
<META name="keywords" content="draw, digital art, web app, ipad, iphone, alchemy, html5, svg, bitbof">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<link rel="icon" type="image/png" href="icon.png" />
<link href="ios_fav.png" rel="apple-touch-icon-precomposed"/>
<script src="webchemy.js"></script>
<script>
window.addEventListener("load", function() {
document.body.innerHTML = "";
var wc = new Webchemy();
setTimeout(function() {
var script = document.createElement('script');
script.src = "filesaver.js";
document.getElementsByTagName('head')[0].appendChild(script);
}, 1000);
}, false);
</script>
</head>
<body>
<div style="font-family: arial; color: #666; width: 200px; position: absolute; top: 0; margin-left: -100px; left: 50%; font-size: 20px; text-align: center;"><br/><br/><br/>loading Webchemy...</div>
</body>
</html>