-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.html
More file actions
51 lines (38 loc) · 1.04 KB
/
Copy pathloader.html
File metadata and controls
51 lines (38 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<span class="loader"><div>
</div></span>
<style>
.loader {
width: 215px;
height: 220px;
background:
linear-gradient(0.25turn, transparent, #FFF, transparent),
linear-gradient(#DDD, #DDD),
linear-gradient(#DDD, #DDD),
linear-gradient(#DDD, #DDD);
background-color: #fff;
background-repeat: no-repeat;
background-size: 215px 220px, 215px 130px, 100px 15px, 150px 15px;
background-position: -215px 0, 0 0, 15px 150px, 15px 180px;
animation: loading 1.5s infinite;
}
@keyframes loading {
to {
background-position: 215px 0, 0 0, 15px 150px, 15px 180px;
}
}
div{
padding: 5px;
}
</style>
</body>
</html>
Beta Warning ⚠️
You’re using the beta version of the website. Some features may not work perfectly. Thanks for your patience!