-
Notifications
You must be signed in to change notification settings - Fork 2
/
loader.html
124 lines (104 loc) · 3.02 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>Processing Your Request</title>
<link href='#' rel='stylesheet'>
<link href='https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css' rel='stylesheet'>
<meta http-equiv="refresh" content="7,thankyou.html">
<script type='text/javascript' src='#'></script>
<link rel="stylesheet" href="style.css">
<style>
::-webkit-scrollbar {
width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
* {
padding: 0;
margin: 0;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #eee;
flex-direction: column;
}
.box {
position: relative;
width: 350px;
height: 100px;
display: flex;
align-items: center;
justify-content: space-evenly;
}
.box span {
display: block;
height: 35px;
width: 35px;
background: #000;
border-radius: 50%;
animation: all-effect 0.6s linear infinite alternate;
transform: scale(0);
}
.box span:nth-child(1) {
animation-delay: 0.1s;
}
.box span:nth-child(2) {
animation-delay: 0.2s;
}
.box span:nth-child(3) {
animation-delay: 0.3s;
}
.box span:nth-child(4) {
animation-delay: 0.4s;
background: #00b9f5;
}
.box span:nth-child(5) {
animation-delay: 0.5s;
background: #00b9f5;
}
@keyframes all-effect {
100% {
transform: scale(1);
}
}
</style>
</head>
<body className='snippet-body'>
<div class="container">
<span style="text-align: center;padding:0 10px"><h4>Please wait while we are processing your payment.</h4></span>
<div class="box">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<script type='text/javascript' src='#'></script>
<script type='text/javascript' src='#'></script>
<script type='text/javascript' src='#'></script>
<script type='text/javascript' src='#'></script>
<script type='text/javascript'></script>
<script type='text/javascript'>
var myLink = document.querySelector('a[href="#"]');
myLink.addEventListener('click', function (e)
{
e.preventDefault();
});</script>
</body>
</html>