-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStartGame.html
More file actions
63 lines (59 loc) · 1.67 KB
/
StartGame.html
File metadata and controls
63 lines (59 loc) · 1.67 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/StartGame.css" type="text/css">
<link rel="stylesheet" href="./css/loader.css">
<script src="js/create_game.js"></script>
<script src="js/join_team.js"></script>
</head>
<body>
<!--Loader-->
<div class="loader">
<div class="flip-card ">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/images/loader_skull.svg" alt="Avatar" style="width:40vw;height:50vh;">
</div>
<div class="flip-card-back">
<img src="./assets/images/bosm_logo.svg" alt="Avatar" style="width:40vw;height:50vh;">
</div>
</div>
</div>
</div>
<!--Rotate prompt-->
<div id="rotate-prompt">
<img src="./assets/images/rotate-screen.gif">
Please play the game in landscape mode!
</div>
<!--Main page-->
<div class="background">
<a href="TeamName.html" class="start">
<p>Create a Team</p>
</a>
<p>Or</p>
<div class="flex">
<p class="inline">Join a Team</p>
<div class="input">
<input>
</div>
<a class ="submit" href="#"><p>Submit</p></a>
</div>
</div>
<script type="text/javascript">
function loadComplete() {
loader = document.querySelector(".loader");
loader.style.opacity = "0";
console.log("LOADED");
setTimeout(function() {
loader.style.display = "none"
}, 800);
}
window.onload = function(){
setTimeout(loadComplete, 4000);
};
</script>
</body>
</html>