-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
45 lines (40 loc) · 1.3 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/><title>LoadingScreen</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:300" rel="stylesheet">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.css'>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="bg"></div>
<div id="logo"></div>
<div class="footer">
<div id="loader">
<div id="spinner"></div>
<h2 id="loading-text">Loading...</h2>
<br>
</div>
<div id="discord"></div>
</div>
<canvas id="app"></canvas>
<script>
var AudioFile = 'audio.ogg';
var BackgroundFile = 'background.png';
var LogoFile = 'logo.png';
var ColorWawe = '#10f5ff';
var AudioVolume = 0.2;
var Discord = 'https://discord.gg/XXXXXXX';
</script>
<script src="https://cdn.jsdelivr.net/npm/three"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="app.js"></script>
</body>
</html>
<!--
Powered by jumpjet
Fivem profile https://forum.fivem.net/u/jumpjet/
Discord BlackFox91#0053
-->