-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (99 loc) · 3.92 KB
/
index.html
File metadata and controls
112 lines (99 loc) · 3.92 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
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
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sitcom Slots</title>
<link rel="icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@800&family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Sitcom Slots</h1>
<div class="instruction-column column">
<h2>Scoring Guide</h2>
<p class="instructions">Get three matching symbols or </br> the show logo to score. </br> Three logos activate a bonus, </br> where you can find Jellybean!</p>
<table>
<tr>
<th>Jellybean</th>
<th>Three Logos</th>
<th>Two Logos</th>
<th>One Logo</th>
</tr>
<tr>
<td>500</td>
<td>100</td>
<td>50</td>
<td>5</td>
</tr>
<tr>
<th>Rob</th>
<th>Laura</th>
<th>Sally</th>
<th>Buddy</th>
</tr>
<tr>
<td>30</td>
<td>30</td>
<td>15</td>
<td>15</td>
</tr>
</table>
</div>
<div class="slot-column column">
<p id="spin-text">Spin for a chance to win!</p>
<p id="bonus-text">Find Jellybean! </br> Clicks remaining: 3</p>
<div class="container">
<div id="carousel-wrapper">
<!-- originally 6, but added more logos to increase odds of bonus-->
<div id="group1" class="carousel" data-state="1">
<figure><image src='images/dvd-logo.png'></figure>
<figure><image src='images/dvd-rob.png'></figure>
<figure><image src='images/dvd-laura.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
<figure><image src='images/dvd-buddy.png'></figure>
<figure><image src='images/dvd-sally.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
</div>
<div id="group2" class="carousel" data-state="1">
<figure><image src='images/dvd-laura.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
<figure><image src='images/dvd-rob.png'></figure>
<figure><image src='images/dvd-buddy.png'></figure>
<figure><image src='images/dvd-sally.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
</div>
<div id="group3" class="carousel" data-state="1">
<figure><image src='images/dvd-rob.png'></figure>
<figure><image src='images/dvd-sally.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
<figure><image src='images/dvd-buddy.png'></figure>
<figure><image src='images/dvd-sally.png'></figure>
<figure><image src='images/dvd-laura.png'></figure>
<figure><image src='images/dvd-logo.png'></figure>
</div>
</div>
</div>
<div id="bonus-container">
<div class="row">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
</div>
<div class="row">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
<img src="images/jellybean-cover.png" class="bonus-images" alt="">
</div>
</div>
<p id="score">Score = 0</p>
<button id="button" type="button" name="button">SPIN</button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="game.js" charset="utf-8"></script>
</body>
</html>