-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
172 lines (162 loc) Β· 5.04 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link
rel="apple-touch-icon"
href="%PUBLIC_URL%/assets/android-chrome-192x192.png"
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--Meta Optimasation-->
<!-- Primary Meta Tags -->
<title>Lofi Club | Enjoy Hip hop beats to Relax or Study! π§π΅</title>
<meta
name="title"
content="Lofi Club | Enjoy Hip hop beats to Relax or Study! π§π΅"
/>
<meta
name="description"
content="Lofi Club is an amazing place made special to enjoy Hip hop beats to Relax or Study! π§π΅ "
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://metatags.io/" />
<meta
property="og:title"
content="Lofi Club | Enjoy Hip hop beats to Relax or Study! π§π΅"
/>
<meta
property="og:description"
content="Lofi Club is an amazing place made special to enjoy Hip hop beats to Relax or Study! π§π΅ "
/>
<meta property="og:image" content="./assets/loficlub.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://metatags.io/" />
<meta
property="twitter:title"
content="Lofi Club | Enjoy Hip hop beats to Relax or Study! π§π΅"
/>
<meta
property="twitter:description"
content="Lofi Club is an amazing place made special to enjoy Hip hop beats to Relax or Study! π§π΅ "
/>
<meta property="twitter:image" content="./assets/loficlub.png" />
<link rel="canonical" href="https://loficlub.now.sh" />
<style>
* {
margin: 0;
padding: 0;
}
.loader-wrapper {
width: 100vw;
height: 100vh;
z-index: 999999;
position: fixed;
display: flex;
align-items: center;
justify-content: center;
background: #000;
}
.spinner {
margin: 100px auto;
width: 40px;
height: 40px;
position: relative;
}
.cube1,
.cube2 {
background-color: #4cd2d6;
width: 15px;
height: 15px;
position: absolute;
top: 0;
left: 0;
-webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
animation: sk-cubemove 1.8s infinite ease-in-out;
}
.cube2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
@-webkit-keyframes sk-cubemove {
25% {
-webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
}
50% {
-webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
}
75% {
-webkit-transform: translateX(0px) translateY(42px) rotate(-270deg)
scale(0.5);
}
100% {
-webkit-transform: rotate(-360deg);
}
}
@keyframes sk-cubemove {
25% {
transform: translateX(42px) rotate(-90deg) scale(0.5);
-webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
}
50% {
transform: translateX(42px) translateY(42px) rotate(-179deg);
-webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
}
50.1% {
transform: translateX(42px) translateY(42px) rotate(-180deg);
-webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
}
75% {
transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
-webkit-transform: translateX(0px) translateY(42px) rotate(-270deg)
scale(0.5);
}
100% {
transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
}
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div class="loader-wrapper">
<div class="spinner">
<div class="cube1"></div>
<div class="cube2"></div>
</div>
</div>
<script>
$(window).on("load", function () {
$(".loader-wrapper").fadeOut("slow");
});
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
navigator.serviceWorker
.register("worker.js")
.then(
function (registration) {
console.log(
"Worker registration successful",
registration.scope
);
},
function (err) {
console.log("Worker registration failed", err);
}
)
.catch(function (err) {
console.log(err);
});
});
} else {
console.log("Service Worker is not supported by browser.");
}
</script>
</body>
</html>