-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 893 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Water Drop</title>
<meta http-equiv="refresh" content="5;url=profile.html">
<style>
div {
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-radius: 100%;
border: #580081 3px solid;
width: 40px;
height: 40px;
opacity: 1;
animation-name: waterdrop;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@keyframes waterdrop {
0% {
opacity: 1;
}
100% {
width: 350px;
height: 350px;
opacity: 0;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>