-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (102 loc) · 4.31 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StatSheet</title>
<link href= "neg.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<!--
<div id="chargebox" class="charge">
<audio controls autoplay>
<source src="./images/charge.mp3" type="audio/mpeg">
</audio>
</div>
audio box display hidden-->
<div class="center-body">
<div clas="topbox">
<img class="banner animate__animated animate__zoomInDown" src='/images/newlogo.png' id="text-logo" />
<p class="hideme"> A game about <a href="https://baseball-reference.com">referencing baseball</a></p>
<br>
<!-- <img class="logounder animate__animated animate__jackInTheBox" src="/images/stathand.png" id="icon-logo" /> -->
</div>
<!--first sheet and image box-->
<div class="quizbox">
<img
onClick="move();"
class="blist"
id="image"
src='/images/sheet.png';
/>
<br>
<br>
<br>
<div class="squad">
<div class="avatar-one" >
<img src="./images/avat-id.png" class="avatar-one-img" id="avatar-one-id" onClick="hintOne();">
</div>
<label class="label" for="textbox"></label>
<input class ="letters" type="text" id="textbox" name="textbox" placeholder="Enter Player Full Name"></input>
<button onClick="inputCheck(); answer(); nextBox();" type="button" id="answerbutton" >Answer</button>
<p class="result" id="failed-answer-one"></p>
<!-- <button type="button" id="clearbutton" onClick="clearButton()">Try again</button> -->
</div>
</div>
<!--Second box populates upon correct answer-->
<div class="quizbox-two" id="quizbox-two">
<img
onClick="moveTwo();"
class="image-two"
id="image-two"
src='/images/sheettwo.png';
/>
<br>
<br>
<br>
<div class="squad">
<div class="avatar-two" id="avatar-two"><img src="./images/avat-id.png" class="avatar-two-img" id="avatar-two-id" onClick="hintTwo();"></div>
<label class="label-two" for="textbox-two"></label>
<input class ="letters-two" type="text" id="textbox-two" name="textbox-two" placeholder="Enter Player Full Name"></input>
<button class="button-two" onClick="inputCheckTwo(); answerTwo(); thirdBox();"type="button" id="answerbutton-two" >Answer</button>
<p class="result-two" id="failed-answer-two"></p>
<!-- <button class="button-two" type="button" id="clearbutton-two" onClick="buttonTwo()">Try again</button> -->
</div>
</div>
<div class="quizbox-three" id="quizbox-three">
<img
onClick="moveThree();"
class="image-three"
id="image-three"
src='/images/sheetthree.png';
/>
<br>
<br>
<br>
<div class="squad">
<div class="avatar-three" id="avatar-three"><img src="./images/avat-id.png" class="avatar-three-img" id="avatar-three-id" onClick="hintThree();"></div>
<label class="label" for="textbox"></label>
<input class ="letters-three" type="text" id="textbox-three" name="textbox" placeholder="Enter Player Full Name"></input>
<button onClick="inputCheckThree(); answerThree();"type="button" id="answerbutton-three" >Answer</button>
<p class="result-three" id="failed-answer-three"></p>
<!-- <button type="button" id="clearbuttonThree" onClick="clearButtonThree()">Try again</button> -->
</div>
</div>
<div class="score-box" id="score-box">
<div class="counter animate__animated animate__bounceIn">
<h1 id="score">
<br>
</h1>
</div>
</div>
</div>
<script src="./neg.js"></script>
</body>
<footer><div class="footer animate__animated animate__backInLeft"><p><a href="https://www.youtube.com/watch?v=mpRQ35kUTdA">Here's</a> how you play.</p></div></footer>
</html>