-
Notifications
You must be signed in to change notification settings - Fork 105
/
Play Loader.html
62 lines (58 loc) · 1.46 KB
/
Play Loader.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
<html>
<head>
<title>Play Loader | Loaders</title>
<style>
body{
background-color: #000;
}
#play-loader{
width: 100px;
height:100px;
border: 1px solid #000;
margin: 0 auto;
position:relative;
margin-top:10%;
overflow: hidden;
background-image: linear-gradient(to top right, transparent 74%, rgb(0,0,0) 74%), linear-gradient(to top left,rgb(0,0,0) 26%, transparent 26%);
background-size: 207% 105%;
background-position: right bottom, right top;
background-repeat: no-repeat;
}
#play-loader::before{
content: '';
position: absolute;
width: 150px;
height: 150px;
border-radius: 100%;
top: -29px;
left: -32px;
background-color: white;
background: linear-gradient(36deg, #fff 50%, transparent 50%) 0 0;
background-repeat: no-repeat;
background-size: 50% 50%;
animation: load 0.5s linear 0s infinite;
z-index: -1;
}
#play-loader::after{
content:'\25B6';
position: absolute;
width: 100px;
height: 100px;
margin: 2px;
font-size: 122px;
top: -34px;
}
@keyframes load{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="play-loader"></div>
</body>
</html>