-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
132 lines (128 loc) · 3.24 KB
/
menu.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
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FZ2GBVV4SW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FZ2GBVV4SW');
</script>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; URL='portfolio.html'" />
<title>Tohid Khan</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: black; /* Added background color */
}
p {
text-align: center;
color: white; /* Added text color */
}
.multicolor-dots-loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 5em;
width: 5em;
}
.layer {
position: absolute;
height: 100%;
width: 100%;
border-radius: 50%;
animation: rotation 1.5s linear infinite;
}
.layer.blue {
animation-delay: 0s;
}
.layer.green {
animation-delay: 0.1s;
}
.layer.yellow {
animation-delay: 0.2s;
}
.layer.orange {
animation-delay: 0.3s;
}
.layer.red {
animation-delay: 0.4s;
}
.dots {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
}
.dots::before {
content: "";
border-radius: 50%;
display: inline-block;
transform: translateY(-50%);
}
.layer.blue > .dots::before {
height: 0.8em;
width: 0.8em;
background: blue;
}
.layer.green > .dots::before {
height: 0.7em;
width: 0.7em;
background: green;
}
.layer.yellow > .dots::before {
height: 0.6em;
width: 0.6em;
background: yellow;
}
.layer.orange > .dots::before {
height: 0.5em;
width: 0.5em;
background: orange;
}
.layer.red > .dots::before {
height: 0.4em;
width: 0.4em;
background: red;
}
@keyframes rotation {
0% {
rotate: 0turn;
}
60% {
rotate: 1turn;
}
100% {
rotate: 1turn;
}
}
</style>
</head>
<body>
<p>Redirecting you now...</p>
<div class="multicolor-dots-loader">
<div class="layer red">
<div class="dots"></div>
</div>
<div class="layer orange">
<div class="dots"></div>
</div>
<div class="layer yellow">
<div class="dots"></div>
</div>
<div class="layer green">
<div class="dots"></div>
</div>
<div class="layer blue">
<div class="dots"></div>
</div>
</div>
</body>
</html>