-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (128 loc) · 3.41 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Adityanarayan Tiwari">
<meta name="description" content="Adityanarayan Tiwari">
<meta name="keywords"
content="Adityanarayan Tiwari, Adityanarayan, Aditya, Portfolio, top 10 Portfolio, best website, web portfolio, frontend developer portfolio, web developer portfolio, full stack developer portfolio">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>Adityanarayan Tiwari</title>
<!-- Loading Spinner Styling -->
<style>
body {
margin: 0;
padding: 0;
/* height: 100vh; */
font-family: Arial, Helvetica, sans-serif;
}
.loader-container {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
margin: 0;
padding: 0;
color: #FFF;
flex-direction: column;
/* gap: 30px; */
}
.text {
font-size: 30px;
}
.loader_ {
border: 16px solid #f3f3f3;
border-top: 16px solid #9e34db;
border-radius: 50%;
width: 80px;
height: 80px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.spinner {
-webkit-animation: rotate 2s linear infinite;
animation: rotate 4s linear infinite;
z-index: 2;
/* position: absolute; */
top: 50%;
left: 50%;
/* margin: -25px 0 0 -25px; */
width: 50px;
height: 50px;
}
.spinner .path {
stroke: rgb(153, 0, 240);
stroke-linecap: round;
-webkit-animation: dash 1.5s ease-in-out infinite;
animation: dash 1.5s ease-in-out infinite;
}
@-webkit-keyframes rotate {
100% {
transform: rotate(360deg);
}
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes dash {
0% {
stroke-dasharray: 1, 150;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -35;
}
100% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -124;
}
}
@keyframes dash {
0% {
stroke-dasharray: 1, 150;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -35;
}
100% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -124;
}
}
</style>
</head>
<body class="">
<div id="root">
<!-- Loading Spinner Div -->
<div class="loader-container">
<!-- <div class="loader_"></div> -->
<div class="svg">
<svg class="spinner" viewBox="0 0 50 50">
<circle class="path" cx="25" cy="25" r="20" fill="none" stroke-width="5"></circle>
</svg>
</div>
<p class="text">Loading...</p>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>