-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (108 loc) · 2.61 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HackAlphaX</title>
<style>
#page {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
border: none;
margin: 0;
padding: 0;
overflow: hidden;
z-index: 1000;
}
#loading {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background-color: #212529;
display: flex;
align-items: center;
justify-content: center;
z-index: 2000;
}
.spinner {
width: 200px;
height: 200px;
}
.spinner svg {
animation: rotate 1.5s linear infinite;
height: 100%;
width: 100%;
}
.spinner circle {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
animation: dash 1.5s ease-in-out infinite 0s,
color 6s ease-in-out infinite -0.75s;
stroke-linecap: round;
fill: none;
stroke-width: 3;
}
@keyframes rotate {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes dash {
0% {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 89, 200;
stroke-dashoffset: -35;
}
100% {
stroke-dasharray: 89, 200;
stroke-dashoffset: -124;
}
}
@keyframes color {
100%, 0% {
stroke: #4285F4;
}
25% {
stroke: #DE3E35;
}
50% {
stroke: #F7C223;
}
75% {
stroke: #1DA760;
}
}
</style>
</head>
<body>
<div id="loading">
<div class="spinner">
<svg viewBox="0 0 100 100">
<circle cx="50" cy="50" r="20"/>
</svg>
</div>
</div>
<iframe id="page">
Get a better browser!
</iframe>
<script type="text/javascript">
let iframe = document.getElementById("page");
let iframeError;
iframe.onload = function () {
document.getElementById("loading").style.display = "none";
}
iframe.src = "https://hackalphax.co/"
</script>
</body>
</html>