-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcb.html
More file actions
108 lines (85 loc) · 3.28 KB
/
cb.html
File metadata and controls
108 lines (85 loc) · 3.28 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
<!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">
<link rel="stylesheet" href="./css/cb_style.css">
<link rel="stylesheet" href="./css/all_style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="shortcut icon" href="./meta/favicon.png" type="image/x-icon">
<title>Cash Builder</title>
</head>
<body style="display: none;">
<style>
/* To add a local font */
@font-face {
font-family: kenyanCoffee;
src: url("./fonts/kenyan_coffee.ttf");
}
html {
/* Change name here */
/* font-family: "Arial", sans-serif; */
font-family: kenyanCoffee, sans-serif;
/* Change this to change scale across entire site */
font-size: 1.5em;
}
</style>
<button id="next_page_button" class="circle_button">
<div class="page_triangle next_page"></div>
</button>
<button id="prev_page_button" class="circle_button">
<div class="page_triangle prev_page"></div>
</button>
<main id="cb_main_content" class="main_content">
<div id="cb_container">
<text id="cb_timer" class="timer">1:00</text>
<p id="cb_cash" class="big_box">£0.00</p>
</div>
</main>
<p id="suggested_action"></p>
<script src="./js/all/suggestedAction.js" defer></script>
<div id="bgm">
<audio id="theme" src="./sounds/bgm/cb_Theme.mp3" preload='true'></audio>
</div>
<div id="sfx">
<audio id="klaxon" src="./sounds/sfx/all_klaxon.mp3" preload='true'></audio>
<div id="correct">
<audio src="./sounds/sfx/cb_Correct.mp3" preload='true'></audio>
<audio src="./sounds/sfx/cb_Correct.mp3" preload='true'></audio>
<audio src="./sounds/sfx/cb_Correct.mp3" preload='true'></audio>
</div>
</div>
<!-- Disable background in background.js -->
<div id="bg_container"></div>
<script src="./js/all/background.js" defer></script>
<script src="./js/all/definitions.js" defer></script>
<script src="./js/all/sfx.js" defer></script>
<script src="./js/all/timer.js" defer></script>
<script src="./js/all/events.js" defer></script>
<script src="./js/cb/cb_definitions.js" defer></script>
<script src="./js/cb/cb_app.js" defer></script>
<script src="./js/cb/cb_events.js" defer></script>
<div id="sfx_volume_sliders">
<label for="sfx_volume">SFX</label>
<input type="range" name="sfx_volume" id="sfx_volume" class="volume_slider" min="0" max="1" step="0.1">
<label for="bgm_volume">BGM</label>
<input type="range" name="bgm_volume" id="bgm_volume" class="volume_slider" min="0" max="1" step="0.1">
</div>
<!-- comment/ delete from here to remove ? button -->
<!-- START -->
<button id="help_modal_button" class="circle_button">?</button>
<div id="help_modal_container" class="modal_container flex_centered">
<section id="help_modal" class="modal">
<div class="modal_title">
<h3>Key Bindings</h3>
<h6>Click <span id="help_modal_close" class="special_text">here</span> to close</h6>
</div>
<ul id="key_bindings_list"></ul>
</section>
</div>
<!-- END -->
<script src="./js/all/help.js" defer></script>
<script src="./js/cb/cb_help.js" defer></script>
</body>
</html>