-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
65 lines (58 loc) · 1.2 KB
/
index.htm
File metadata and controls
65 lines (58 loc) · 1.2 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows Loader by Ojas Barawal</title>
<!-- CSS -->
<style>
*{ margin: 0; padding: 0; box-sizing: border-box;}
body{
background-color: #00a2ed;
overflow: hidden;
}
.container{
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%,-50%);
}
span{
display: inline-block;
width: 10px; height: 10px;
border-radius: 50%;
margin: 0 2px;
background-color: #fff;
opacity: 0;
animation: load 3s ease-in-out infinite;
}
span:nth-child(5){ animation-delay: 150ms; }
span:nth-child(4){ animation-delay: 300ms; }
span:nth-child(3){ animation-delay: 450ms; }
span:nth-child(2){ animation-delay: 600ms; }
span:nth-child(1){ animation-delay: 750ms; }
@keyframes load {
0%{
transform: translateX(-500px);
opacity: 0;
}
30%,60%{
transform: translateX(0);
opacity: 1;
}
100%{
transform: translateX(500px);
opacity: 0;
}
}
</style>
</head>
<body>
<div class="container">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>