-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.11 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<script src="js/jquery-1.8.3.min.js"></script>
<style>
.main{
font-family: Source Code Pro,Microsoft YaHei;
text-align: left;
font-size: 18px;
font-weight: 500;
width: 80%;
margin: 0 auto;
background: #ccc;
height: 400px;
}
.book{
padding-top: 200px;
margin:0 auto;
font-family: Source Code Pro,Microsoft YaHei;
font-size: 18px;
}
dot{
display: inline-block;
height: 1em;
line-height: 1;
vertical-align: -.25em;
overflow: hidden;
}
dot::before{
display: block;
content: '...\A..\A.';
white-space: pre-wrap;
animation: dot 3s infinite step-start both;
}
@keyframes dot{
33% { transform: translateY(-2em);}
66% { transform: translateY(-1em);}
}
</style>
<title>zhangqi_file</title>
</head>
<body>
<div class="main">
<div class="book">订单提交中<dot>...</dot></div>
</div>
</body>
</html>