-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathBattery.html
64 lines (60 loc) · 1.13 KB
/
Battery.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
<!DOCTYPE html>
<html>
<head>
<title>Battery | Designs</title>
<style>
body{
background-color: rgb(0, 113, 102);
}
.battery{
position: relative;
margin: 0 auto;
margin-top: 20%;
width: 300px;
border: 10px solid cyan;
height: 100px;
border-radius: 20px;
}
.battery:before{
content: '';
position: absolute;
top: 6px;
left: 6px;
height: 88px;
background-color: cyan;
border-radius: 5px;
animation: full 5s linear infinite;
}
.battery:after{
content: '';
position: absolute;
right: -27px;
top: 28px;
width: 20px;
height: 50px;
background-color: cyan;
border-radius: 5px;
}
@keyframes full{
0%{
width: 0%;
}
25%{
width: 24%;
}
50%{
width: 48%;
}
75%{
width: 72%;
}
100%{
width: 96%;
}
}
</style>
</head>
<body>
<div class="battery"></div>
</body>
</html>