-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.14 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 2.14 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kineticjs-animation-demo</title>
<meta name="author" content="rain.fu">
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0,minimum-scale=1, user-scalable=no" >
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="cleartype" content="on">
<style type="text/css">
html, body {
padding: 0;
margin: 0;
height: 100%;
background: #3f3f48 url("kad/background/bg.gif") repeat;
overflow: hidden;
}
#main {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
#splash {
color:white;
width: 620px;
min-width: 620px;
height: 300px;
min-height: 300px;
text-align: center;
vertical-align: middle;
overflow: hidden;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
#error {
position: absolute;
top: 230px;
left: 0;
right: 0;
text-align: center;
color: #aaa;
font-weight: 600;
}
</style>
</head>
<body class="enyo-unselectable">
<div id="main">
<div id="splash">
<!--[if lt IE 9]><div id='error'>载入失败,请先升级<br><br>您的浏览器至IE9+</div><![endif]-->
<img alt="splash" src = "kad/splash.png" id="splashimg"/>
</div>
</div>
<link href="app.css" media="screen" rel="stylesheet" type="text/css"><script src="app.js" type="text/javascript"></script>
</body>
</html>