-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (93 loc) · 2.58 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html manifest="dn.manifest">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,use-scalable=on">
<title>加载斗牛</title>
<style type="text/css">
html{
height: 100%;
background-image: url("images/bg.png");
text-align: center;
}
#game_name{
font-size: 30px;
top:40%;
position: absolute;
text-align: center;
left: 0px;
right: 0px;
}
ul{
padding: 0px;
list-style: none;
text-align: center;
display: block;
margin:0px;
}
ul li{
width: 10px;
height: 10px;
background-color: #000000;
box-shadow: 0px 1px 0px rgba(0,0,0,0,5);
display: inline-block;
border-radius: 50%;
margin: 0 4px;
-webkit-animation:loading 2s infinite;
-webkit-animation-fill-mode:both;
}
.info{
display: inline-block;
text-align: center;
color: #ffffff;
font-weight: bold;
}
@-webkit-keyframes loading{
0%{
-webkit-transform:translateX(-30px);opacity: 0;
}
25%{
opacity: 1;
}
50%{
-webkit-transform:translateX(30px);opacity: 0;
}
100%{
opacity: 0;
}
}
ul li:nth-child(6){-webkit-animation-delay:0s;}
ul li:nth-child(5){-webkit-animation-delay:0.2s;}
ul li:nth-child(4){-webkit-animation-delay:0.4s;}
ul li:nth-child(3){-webkit-animation-delay:0.6s;}
ul li:nth-child(2){-webkit-animation-delay:0.8s;}
ul li:nth-child(1){-webkit-animation-delay:1.0s;}
</style>
</head>
<body onload="load()">
<div id="game_name">
<div class="info">斗牛</div>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="info" style="font-size: 18px;color: #ffff00;">
(无毒 不耗流量 仅仅0.2M)
</div><br/>
<div class="info" style="font-size: 20px">检查更新中,精彩马上呈现····</div>
</div>
</body>
<script type="text/javascript">
document.addEventListener("touchmove",function(e){
e.preventDefault();
},false);
function load(){
setTimeout(function(){
window.location.href="dn.html";
},3000);
}
</script>
</html>