-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathss.html
More file actions
58 lines (53 loc) · 1.28 KB
/
Copy pathss.html
File metadata and controls
58 lines (53 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>无标题文档</title>
<style>
.circle {
background-color: rgba(0,0,0,0);
border:5px solid rgba(0,183,229,.9);
opacity:.9;
border-right:5px solid rgba(0,0,0,0);
border-left:5px solid rgba(0,0,0,0);
border-radius:50px;
box-shadow:0 0 35px #2187e7;
width:50px;
height:50px;
margin:0 auto;
-webkit-animation:spinPulse 1s infinite ease-in-out;
}
.circle_s {
background-color:rgba(0,0,0,0);
border:5px solid rgba(0,183,229,.9);
opacity:.9;
border-left:5px solid rgba(0,0,0,0);
border-right:5px solid rgba(0,0,0,0);
border-radius:50px;
box-shadow:0 0 15px #2187e7;
width:30px;
height:30px;
margin:0 auto;
position:relative;top:-50px;
-webkit-animation:spinoffPulse 1s infinite linear;
}
@-webkit-keyframes spinPulse {
0% { -webkit-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #505050; }
50% { -webkit-transform:rotate(145deg); opacity:1;}
100% { -webkit-transform:rotate(-320deg); opacity:0; }
}
@-webkit-keyframes spinoffPulse {
0% { -webkit-transform:rotate(0deg); }
100% { -webkit-transform:rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="circle"></div>
<div class="circle_s"></div>
</div>
</div>
</body>
</html>