-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgame.html
More file actions
76 lines (63 loc) · 2.87 KB
/
Copy pathgame.html
File metadata and controls
76 lines (63 loc) · 2.87 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
<html>
<head>
<script src="assets/js/represent.js"></script>
<link rel="stylesheet" type="text/css" href="assets/css/represent.css" />
</head>
<center>
<body onload="init()">
<!-- Game Logo
<img src="images/SVG/topo.svg" alt="Represent logo" height="200px" width="200px" style="margin-right: 400px;" />-->
<!-- Playfield:INTRO -->
<div id="intro" style="display:block">
<img src="images/SVG/intro.svg" height="200px" width="200px" style="margin-right: 800px;" />
</div>
<!-- Playfield:ICON -->
<div id="icon" style="display:none">
<img id="icon_img" src="images/SVG/male.svg" height="300px" width="200px" />
</div>
<!-- Playfield:RESULT IS CORRECT -->
<div id="result_correct" style="display:none">
<img src="images/SVG/correct.svg" />
</div>
<!-- Playfield:RESULT IS INCORRECT -->
<div id="result_incorrect" style="display:none">
<img src="images/SVG/incorrect.svg" width="100px" height="200px" />
</div>
<!-- Playfield:GAMEOVER -->
<div id="gameover" style="display:none">
<img src="images/SVG/gameover.svg" />
</div>
<!-- Buttons -->
<center>
<div id="buttons" style="display:block" width="600px" style="margin-top: 100px;font-size: 20px;"
class="=grid-container">
<div class="grid-item">
<img id="bisexual_female" src="images/SVG/B_bisexual_female.svg" onclick="answer(this)" />
<img id="gay" src="images/SVG/B_gay.svg" onclick="answer(this)" />
<img id="other_gender" src="images/SVG/B_other_gender.svg" onclick="answer(this)" />
</div>
<div class="grid-item">
<img id="transgender" src="images/SVG/B_transgender.svg" onclick="answer(this)" />
<img id="neutrois" src="images/SVG/B_neutrois.svg" onclick="answer(this)" />
<img id="female" src="images/SVG/B_female.svg" onclick="answer(this)" />
</div>
<div class="grid-item">
<img id="bisexual_male" src="images/SVG/B_bisexual_male.svg" onclick="answer(this)" />
<img id="male" src="images/SVG/B_male.svg" onclick="answer(this)" />
<img id="heterosexual" src="images/SVG/B_heterosexual.svg" onclick="answer(this)" />
</div>
<div class="grid-item">
<img id="questioning" src="images/SVG/B_questioning.svg" onclick="answer(this)" />
<img id="agender" src="images/SVG/B_agender.svg" onclick="answer(this)" />
<img id="non_binary" src="images/SVG/B_non_binary.svg" onclick="answer(this)" />
</div>
<div class="grid-item">
<img id="androgynous" src="images/SVG/B_androgynous.svg" onclick="answer(this)" />
<img id="lesbian" src="images/SVG/B_lesbian.svg" onclick="answer(this)" />
<img id="intersex" src="images/SVG/B_intersex.svg" onclick="answer(this)" />
</div>
</div>
</center>
</body>
</center>
</html>