forked from webclipper/web-clipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>webpack App</title>
<style>
.web-clipper-loading {
position: fixed;
right: 10px;
top: 10px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
background: white;
width: 324px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
}
.web-clipper-loading .line {
animation: expand 1s ease-in-out infinite;
border-radius: 10px;
display: inline-block;
transform-origin: center center;
margin: 0 3px;
width: 1px;
height: 25px;
}
.web-clipper-loading .line:nth-child(1) {
background: #27ae60;
}
.web-clipper-loading .line:nth-child(2) {
animation-delay: 180ms;
background: #f1c40f;
}
.web-clipper-loading .line:nth-child(3) {
animation-delay: 360ms;
background: #e67e22;
}
.web-clipper-loading .line:nth-child(4) {
animation-delay: 540ms;
background: #2980b9;
}
@keyframes expand {
0% {
transform: scale(1);
}
25% {
transform: scale(2);
}
}
</style>
</head>
<body>
<div id="app">
<div class="web-clipper-loading">
<div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</div>
<script type="text/javascript" src="vendor.js"></script>
</body>
</html>