-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
149 lines (145 loc) · 4.64 KB
/
options.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="shortcut icon"
href="assets/static/favicon.ico"
type="image/x-icon"
/>
<link rel="icon" href="assets/static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="assets/css/options.css" />
<title>Fall Guys: Game Settings</title>
</head>
<body>
<button class="backButt">
<i class="fa fa-arrow-circle-o-left" onclick="getBack()"></i>
</button>
<div class="settingImage">
<h1>GAME SETTINGS</h1>
<img src="assets/images/gears.png" alt="Settings" />
</div>
<div class="box">
<div class="macroLabels">
<h2>PLAYER ONE</h2>
</div>
<div class="option1">
<h3 class="singleOption">Player one username:</h3>
<input
type="text"
id="playerOneUsername"
placeholder="Enter username"
/>
</div>
<br />
<div class="macroLabels">
<h2>PLAYER TWO</h2>
</div>
<div class="option1">
<h3 class="singleOption">Player two username:</h3>
<input
type="text"
id="playerTwoUsername"
placeholder="Enter username"
/>
</div>
<br />
<div class="macroLabels">
<h2>DIFFICULTY</h2>
</div>
<div class="option1">
<h3 class="singleOption">Select difficulty option:</h3>
<button class="butt">
<i class="fa fa-chevron-left icon" onclick="decreaseDifficulty()"></i>
</button>
<h3 class="butt" id="difficulty">Normal</h3>
<button class="butt">
<i
class="fa fa-chevron-right icon"
onclick="increaseDifficulty()"
></i>
</button>
</div>
<br />
<div class="macroLabels">
<h2>MAP</h2>
</div>
<div class="option1">
<h3 class="singleOption">Select your map:</h3>
<button class="butt">
<i class="fa fa-chevron-left icon" onclick="decreaseMap()"></i>
</button>
<h3 class="butt" id="maps">Map-1</h3>
<button class="butt">
<i class="fa fa-chevron-right icon" onclick="increaseMap()"></i>
</button>
</div>
<br />
<div class="macroLabels">
<h2>MOTION BLUR</h2>
</div>
<div class="option1">
<h3 class="singleOption">Enable Motion Blur:</h3>
<button class="butt">
<i class="fa fa-chevron-left icon" onclick="changeMotionOn()"></i>
</button>
<h3 class="butt" id="motionBlur">Off</h3>
<button class="butt">
<i class="fa fa-chevron-right icon" onclick="changeMotion()"></i>
</button>
</div>
<br />
<div class="macroLabels">
<h2>TEXTURE PLATFORM</h2>
</div>
<div class="option1">
<h3 class="singleOption">Select texture option:</h3>
<button class="butt">
<i class="fa fa-chevron-left icon" onclick="textureOff()"></i>
</button>
<h3 class="butt" id="texture">Color</h3>
<button class="butt">
<i class="fa fa-chevron-right icon" onclick="textureOn()"></i>
</button>
</div>
<br />
<div class="macroLabels">
<h2>VOLUME</h2>
</div>
<div class="option1">
<h3 class="singleOption">Choose your prefered volume:</h3>
<input
type="range"
name="volume"
id="volume"
class="slider"
min="0"
max="100"
step="1"
/>
</div>
<br />
<div class="endOptions">
<button class="btn btn-dark" onclick="saveSettings()">Save</button>
<button class="btn btn-dark" onclick="resetSettings()">Reset</button>
<button class="btn btn-dark" onclick="getBack()">Exit</button>
</div>
</div>
<audio autoplay loop controls class="audio" hidden>
<source src="assets/static/sounds/lobby.mp3" type="audio/mpeg" />
<!-- Include additional source tags with alternative audio formats for better browser compatibility -->
</audio>
<script src="assets/js/options.js"></script>
</body>
</html>