-
Notifications
You must be signed in to change notification settings - Fork 70
/
loader.css
146 lines (125 loc) · 3.55 KB
/
loader.css
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.custom_loader_wrap * {
box-sizing: border-box;
}
.custom_loader_wrap {
overflow: auto; /* location bar hack */
overflow-x: hidden;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
user-select: none;
-webkit-user-select: none;
pointer-events: all;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--cl-background);
/*
** You can modify these custom properties to change how the loader looks on the front end.
** And if the style you're looking for is not listed here,
** or, if you require a completely different custom loader,
** you can always contact us at support@awe.media
*/
/* 1. page background color */
--cl-background: #15171c;
/* 2. cube width */
--cl-cube-width: 15vmin;
/* 3. cube front side background color */
--cl-cube-bg-front: #3498db;
/* 4. cube back side background color */
--cl-cube-bg-back: #5ec6ce;
/* 5. cube right side background color */
--cl-cube-bg-right: #9b59b6;
/* 6. cube left side background color */
--cl-cube-bg-left: #e74c3c;
/* 7. cube top side background color */
--cl-cube-bg-top: #2ecc71;
/* 8. cube bottom side background color */
--cl-cube-bg-bottom: #f1c40f;
/* 9. cube animation duration */
--cl-cube-animation: 6s;
}
.custom_loader_inner_wrap {
width: var(--cl-cube-width);
height: var(--cl-cube-width);
position: relative;
perspective: 1000px;
}
.custom_loader_cube {
position: absolute;
width: 100%;
height: 100%;
transform-style: preserve-3d;
animation: cube_animation var(--cl-cube-animation) ease infinite;
}
.cube_front {
position: absolute;
background: var(--cl-cube-bg-front);
transform: translateZ(calc(var(--cl-cube-width) * 0.9));
width: var(--cl-cube-width);
height: var(--cl-cube-width);
border-radius: var(--cl-cube-width);
}
.cube_back {
position: absolute;
background: var(--cl-cube-bg-back);
transform: rotateX(-180deg) translateZ(calc(var(--cl-cube-width) * 0.9));
width: var(--cl-cube-width);
height: var(--cl-cube-width);
border-radius: var(--cl-cube-width);
}
.cube_right {
position: absolute;
background: var(--cl-cube-bg-right);
transform: rotateY(90deg) translateZ(calc(var(--cl-cube-width) * 0.9));
width: var(--cl-cube-width);
height: var(--cl-cube-width);
border-radius: var(--cl-cube-width);
}
.cube_left {
position: absolute;
background: var(--cl-cube-bg-left);
transform: rotateY(-90deg) translateZ(calc(var(--cl-cube-width) * 0.9));
width: var(--cl-cube-width);
height: var(--cl-cube-width);
border-radius: var(--cl-cube-width);
}
.cube_top {
position: absolute;
background: var(--cl-cube-bg-top);
transform: rotateX(90deg) translateZ(calc(var(--cl-cube-width) * 0.9));
width: var(--cl-cube-width);
height: var(--cl-cube-width);
border-radius: var(--cl-cube-width);
}
.cube_bottom {
position: absolute;
background: var(--cl-cube-bg-bottom);
transform: rotateX(-90deg) translateZ(calc(var(--cl-cube-width) * 0.9));
width: var(--cl-cube-width);
height: var(--cl-cube-width);
border-radius: var(--cl-cube-width);
}
@keyframes cube_animation {
16.5% {
transform: translateZ(var(--cl-cube-width)) rotateX(-90deg);
}
33% {
transform: translateZ(var(--cl-cube-width)) rotateX(90deg);
}
49.5% {
transform: translateZ(var(--cl-cube-width)) rotateY(-90deg);
}
66% {
transform: translateZ(var(--cl-cube-width)) rotateY(90deg);
}
82% {
transform: translateZ(var(--cl-cube-width)) rotateX(-180deg);
}
}