-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (32 loc) · 1.15 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
34
<!DOCTYPE HTML>
<html manifest="myth.manifest" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>星宿神话</title>
<link rel="stylesheet" href="styles/style.css" type="text/css" />
</head>
<body>
<div id="wrap">
<div id="loading">loading...</div>
<canvas id='main'></canvas>
</div>
<script src="scripts/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="scripts/base.js" type="text/javascript"></script>
<script src="scripts/menu.js" type="text/javascript"></script>
<script src="scripts/animate.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
window.scrollTo(0, 0);
var pic = new Image();
pic.onload = function() {
document.getElementById('loading').style.display = 'none';
myth.init();
myth.menu.main();
};
pic.src = myth.base.vars.src();
});
</script>
</body>
</html>