-
Notifications
You must be signed in to change notification settings - Fork 105
/
Fill up.html
55 lines (51 loc) · 1.08 KB
/
Fill up.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
<html>
<head>
<title>Fill up | Loaders</title>
<style>
body{
background-color: #eeeeee;
}
#fill-up{
width: 100px;
height:100px;
border: 5px solid #68DEA8;
border-radius: 100px;
margin: 0 auto;
position:relative;
margin-top:25%;
overflow: hidden;
}
#fill-up::before{
content: '';
position: absolute;
width: 100px;
height: 100px;
top: 150px;
background-color: #68DEA8;
animation: fill 5s ease 0s alternate infinite;
}
#fill-up::after{
content:'Loading';
position: absolute;
width: 100px;
height:100px;
padding-top:50%;
border: 5px solid #ffffff;
border-radius: 50%;
box-sizing:border-box;
padding: 36px 17px;
color: #fff;
font-family: sans-serif;
font-size: 16px;
}
@keyframes fill{
100%{
top: 0px;
}
}
</style>
</head>
<body>
<div id="fill-up"></div>
</body>
</html>