-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (57 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Admin X | loading</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.dc1{
position:absolute;
top:415px;
color:red;
font-family:bold;
font-size:35px;
}
.custom-loader {
width:70px;
height:70px;
border-radius:50%;
border:8px solid;
border-color:#000000;
border-right-color: #F40000;
animation:s2 1s infinite linear;
}
@keyframes s2 {to{transform: rotate(1turn)}}
</style>
<script>
setTimeout(function() {
window.location.href = 'g/Admin-x.html';
console.log('part 1 active');
}, 10000);
</script>
<script>
var timeleft = 10;
var downloadTimer = setInterval(function(){
if(timeleft <= 0){
clearInterval(downloadTimer);
document.getElementById("countdown").innerHTML = "Finished";
} else {
document.getElementById("countdown").innerHTML = (timeleft) ;
}
timeleft -= 1;
}, 1000);
</script>
</head>
<body bgcolor="black">
<div class="custom-loader">
</div>
<div class='dc1'>Loading:<div id="countdown"></div></div>
</body>
</html>