-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.html
More file actions
78 lines (53 loc) · 1.26 KB
/
loader.html
File metadata and controls
78 lines (53 loc) · 1.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
:root {
--main-color: #ecf0f1;
--point-color: #555;
--size: 5px;
}
.loader {
background-color: var(--main-color);
overflow: hidden;
width: 100%;
height: 100%;
position: fixed;
top: 0; left: 0;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
z-index: 100000;
}
.loader__element {
border-radius: 100%;
border: var(--size) solid var(--point-color);
margin: calc(var(--size)*2);
}
.loader__element:nth-child(1) {
animation: preloader .6s ease-in-out alternate infinite;
}
.loader__element:nth-child(2) {
animation: preloader .6s ease-in-out alternate .2s infinite;
}
.loader__element:nth-child(3) {
animation: preloader .6s ease-in-out alternate .4s infinite;
}
@keyframes preloader {
100% { transform: scale(2); }
}
</style>
</head>
<body>
<div class="loader">
<span class="loader__element"></span>
<span class="loader__element"></span>
<span class="loader__element"></span>
</div>
</body>
</html>