-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (26 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
35 lines (26 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Genesis IDE</title>
<script src="https://cdn.jsdelivr.net/npm/phaser@3.80.1/dist/phaser.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/Draggable.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="public/style.css">
</head>
<body style="margin: 0; padding: 0; width: 100%; height: 100%; background: transparent; overflow: hidden;">
<div id="app-loader">
<div class="loader">
<img class="img-left" src="public/images/ui/load/loadLeft.webp" alt="Left">
<img class="img-up" src="public/images/ui/load/loadUp.webp" alt="Up">
<img class="img-down" src="public/images/ui/load/loadDown.webp" alt="Down">
<img class="img-right" src="public/images/ui/load/loadRight.webp" alt="Right">
</div>
<div id="loader-text">Loading...</div>
</div>
<div id="game-container"></div>
<script type="module" src="source/resource/loader.js"></script>
</body>
</html>