-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (86 loc) · 4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Guess that Anime</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../Izzy-Word-Guess-Game/assets/css/output.css">
<link rel="stylesheet" href="../Izzy-Word-Guess-Game/assets/css/reset.css">
<link rel="stylesheet" href="../Izzy-Word-Guess-Game/assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Dancing+Script&display=swap" rel="stylesheet">
</head>
<body>
<!-- Start of the personalized Video Background from final cut pro of WindRises and Personalized Background Image -->
<video playsinline autoplay muted loop id="video">
<source src="../Izzy-Word-Guess-Game/assets/videos/windrises_final.m4v">
</source>
</video>
<!-- End of the personalized Video Background from final cut pro of WindRises and Personalized Background Image -->
<!-- Start of the main Container DIV -->
<div class="container center-align">
<!-- Start of the User Play Button -->
<div class="row" id="playButton">
<p>Play</p>
</div>
<!-- End of the User Play Button -->
<!-- Start of first options of when the user launches the game order: Play-What Type of Anime(Shows or Movies) -->
<div class="row center-align" id="animePick">
<h4 style="font-size: 75px;">What Kind of Anime do you Watch?</h4>
<a id="movieBtn" class="waves-effect waves-light btn"><iq
class="material-icons">Movies</iq></a>
<a id="showBtn" class="waves-effect waves-light btn"><i class="material-icons">Shows</i></a>
</div>
<!-- End of first options of when the user launches the game order: Play-What Type of Anime(Shows or Movies) -->
<!-- Start of the Play Again Button for when a User is done with their Gify Pick and want to restart the game -->
<!-- <div id="playAgain" class="row" style="text-align: center;">
</strong class="waves-effect waves-light btn">Play Again </strong> <span
class="material-icons center"></span>
</div> -->
<!-- End of the Play Again Button for when a User is done with their Gify Pick and want to restart the game -->
<div class="row center-align" id="animeTitles">
<h2 id="animeTitle">Guess that Anime Movie!</h2>
<h2 id="animeTitle2">Guess that Anime Show!</h2>
</div>
<div class="center-align card col-12 row" id="hangman" style="text-align: center;">
<video id="introVideo" src="https://animethemes.moe/video/CowboyBebop-OP1.webm" class="media"> </video>
</div>
<div class="carousel"></div>
<!-- Start of Materialized Buttons for Gify when user Wins Game -->
<div class="container row col-12 center-align" id="inputRow">
<input type="text" id="gifyInput"> </input>
<br>
<button id='addGify' class="waves-effect waves-light btn" type="submit" value='submit'>Add Gify</button>
</div>
<!-- End of Materialized Buttons for Gify when user Wins Game -->
<!-- Start of the User Scoreboard for the Game -->
<div class="container col s12 m8 offset-m2 l6 offset-l3 xl4 offset-xl4 center-align valign-wrapper">
<div id="scoreboard">
<strong>Wrong Guesses: </strong> <span id="wrong-guesses">__</span>
<strong>Guesses Left: </strong> <span id="guesses-left">__</span>
<br>
<strong>Letters Guessed: </strong> <span id="letters-guessed">__</span>
<strong>Wins: </strong> <span id="win-counter">__</span>
<br>
<strong>Losses: </strong> <span id="loss-counter">__</span>
</div>
</div>
<!-- End of the User Scoreboard for the Galsme -->
<!-- Start of the GifyButtons -->
<a id="gifyButtons" class="col s12 center-align row valign-wrapper" style="margin:20px"></a>
<!-- End of the GifyButtons -->
<!-- Start of the User Guessing Blanks -->
<div class="row" style="text-align: center">
<p id="blanks" style="text-align: center"></p>
</div>
<!-- End of the User Guessing Blanks -->
<!-- Start of the User Play Button -->
<!-- End of Container DIV -->
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="../Izzy-Word-Guess-Game/assets/javascript/intro.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
</html>