-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevnt-loader.php
172 lines (148 loc) · 2.52 KB
/
evnt-loader.php
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<style>
* {
box-sizing: border-box;
}
body {
padding: 0px;
background: #413e66;
}
.s2 {
position: absolute;
height: 100px;
width: 100px;
background-color: transparent;
top: 50vh;
left: 50%;
transform: translate(-50%, -50%);
}
.s1 {
position: absolute;
height: 100px;
width: 100px;
top: 50vh;
left: 50%;
transform-origin: center;
transform: translate(-50%, -50%) rotate(45deg);
background-color: transparent;
}
.bigcon {
position: absolute;
height: 95px;
width: 95px;
top: 50vh;
left: 50%;
transform-origin: center;
transform: translate(-50%, -50%) rotate(-45deg);
background-color: transparent;
animation: bigcon 2s infinite linear;
animation-delay: 0.25s;
}
.b {
border-radius: 50%;
position: absolute;
}
.s {
width: 25px;
height: 25px;
animation: small 2s infinite ease;
box-shadow: 0px 2px rgba(0,0,0,0.3);
background-color: #46b9ff;
}
.s:nth-child(1) {
top: 0%;
left: 0%;
}
.s:nth-child(2) {
top: 0%;
right: 0%;
}
.s:nth-child(3) {
right: 0%;
bottom: 0%;
}
.s:nth-child(4) {
bottom: 0%;
left: 0%;
}
.big {
width: 20px;
height: 20px;
border-radius: 15px;
box-shadow:0px 0px 10px #54f7f8, 0px 0px 20px #54f7f8, 0px 0px 30px #54f7f8, 0px 0px 50px #54f7f8, 0px 0px 60px #54f7f8 ;
z-index: 1;
background-color: #54f7f8;
animation: bigball 1s infinite linear;
}
.sb1{
animation-delay: -1.75s;
}
.sb6{
animation-delay: -1.5s;
}
.sb2{
animation-delay: -1.25s;
}
.sb7{
animation-delay: -1s;
}
.sb3{
animation-delay: -0.75s;
}
.sb8{
animation-delay: -0.5s;
}
.sb4{
animation-delay: -0.25s;
}
.sb5{
animation-delay: -0s;
}
@keyframes bigcon {
0% {
transform-origin: center;
transform: translate(-50%, -50%) rotate(45deg);
}
100% {
transform-origin: center;
transform: translate(-50%, -50%) rotate(405deg);
}
}
@keyframes small {
0% {
transform: scale(1);
background-color: #46b9ff;
}
10% {
transform: scale(1.3);
background-color: #54f7f8;
}
15% {
transform: scale(1);
}
25%{
transform: scale(1);
background-color: #46b9ff;
}
100%{
transform: scale(1);
background-color: #46b9ff;
}
}
</style>
<div class="main">
<div class="s1">
<div class="s b sb1"></div>
<div class="s b sb2"></div>
<div class="s b sb3"></div>
<div class="s b sb4"></div>
</div>
<div class="s2">
<div class="s b sb5"></div>
<div class="s b sb6"></div>
<div class="s b sb7"></div>
<div class="s b sb8"></div>
</div>
<div class="bigcon">
<div class="big b"></div>
</div>
</div>