-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (94 loc) · 4.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Monster Mimic | Trijam #173</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Poppins:wght@400;900&display=swap" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
<link href="styles/monster-parts.css" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<a href="https://github.com/townsean/trijam-173">Monster Mimic | Trijam #173</a>
</header>
<main>
<!-- Start Scene -->
<section id="start-scene" class="scene">
<h1>Monster Mimic</h1>
<p>
You are a monster with the power of mimicking the appearance of others!
<br>
Copy the look of the monsters you see, but don't delay. It's a race against the clock.
</p>
<button id="start-button" class="game-state-button" draggable="false">Start Game</button>
</section>
<!-- Game Scene -->
<section id="game-scene" class="scene hidden">
<div>
<h2>Mimic the monster within <span id="countdown">10</span> <span>seconds</span>!</h2>
<section>
<div id="copy-monster-container">
<section id="monster-to-copy">
<!-- Eyebrows -->
<section class="eyebrows">
<div id="copy-left-eyebrow" class="eyebrow-a"></div>
<div id="copy-right-eyebrow" class="eyebrow-a"></div>
</section>
<!-- Eyes -->
<section class="eyes">
<div id="copy-left-eye" class="eye-d"></div>
<div id="copy-right-eye" class="eye-d"></div>
</section>
<!-- Nose -->
<section id="copy-nose" class="nose-c"></section>
<!-- Mouth -->
<section id="copy-mouth" class="mouth-b"></section>
</section>
</div>
<section id="options" class="hidden">
<h3>Eyebrows</h3>
<section id="eyebrow-options" class="options-section"></section>
<h3>Eyes</h3>
<section id="eye-options" class="options-section"></section>
<h3>Nose</h3>
<section id="nose-options" class="options-section"></section>
<h3>Mouth</h3>
<section id="mouth-options" class="options-section"></section>
</section>
<section id="mimic-monster" class="skin">
<!-- Eyebrows -->
<section class="eyebrows">
<div id="left-eyebrow" class="basic-eyebrows"></div>
<div id="right-eyebrow" class="basic-eyebrows"></div>
</section>
<!-- Eyes -->
<section class="eyes">
<div id="left-eye" class="basic-eyes"></div>
<div id="right-eye" class="basic-eyes"></div>
</section>
<!-- Nose -->
<section id="nose" class="basic-nose"></section>
<!-- Mouth -->
<section id="mouth" class="basic-mouth"></section>
</section>
</section>
</div>
</section>
<!-- End Scene -->
<section id="end-scene" class="scene hidden">
<h1><span id="endgame-message"></span> Again?</h1>
<section id="compare-section"></section>
<button id="restart-button" class="game-state-button">Restart Game</button>
</section>
</main>
<footer>
<a href="https://twitter.com/thecodingcouple">A game by Ashley | @thecodingcouple</a>
</footer>
<script type="module" src="scripts/main.js"></script>
</body>
</html>