-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
149 lines (121 loc) · 5.38 KB
/
index.htm
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
<head>
<meta charset="utf-8">
<title>Batukeitor</title>
<link rel="icon" type="image/x-icon" href="./app/img/favicon.png">
<script src="./app/js/3rdparty/jquery/jquery-3.7.1.min.js"></script>
<script src="./app/js/3rdparty/js-yaml/js-yaml.min.js"></script>
<script src="./app/js/3rdparty/audiocontext-monkeypatch/AudioContextMonkeyPatch.js"></script>
<script type="module" src="./app/js/index.js"></script>
<link href="./app/css/index.css" rel="stylesheet"/>
<meta http-equiv="Cache-control" content="no-cache, no-store">
</head>
<body>
<!-- ------------------------------------------------------- LOADING -->
<div id="loading">
<br/><br/>
<img id="loading-app-logo" src="./app/img/batukeitor-logo.svg">
<br/><br/>
<img src="./app/img/loading.gif">
<br/><br/>
Loading...
</div>
<!-- ------------------------------------------------------- APP -->
<div id="app">
<!-- ------------------------------------------------------- APP HEADER -->
<div id="app-header">
<a href="https://github.com/clvLabs/batukeitor" title="Make your own Batukeitor" target="_blank">
<img id="app-logo" src="./app/img/batukeitor-logo.svg">
</a>
<select id="crew-selector"></select>
<select id="score-selector"></select>
<div id="score-info"></div>
</div>
<!-- ------------------------------------------------------- APP STICKY HEADER -->
<div id="app-sticky-header">
<div id="app-sticky-header-row">
<!-- ------------------------------------------------------- TAB BUTTONS -->
<div id="main-tab-buttons">
<button id="tab-button-score" title="Score" class="tab-button">
<span class="tab-button-content">
<img src="./app/img/score-tab-icon.svg">
</span>
</button>
<button id="tab-button-sections" title="Sections" class="tab-button">
<span class="tab-button-content">
<img src="./app/img/sections-tab-icon.svg">
</span>
</button>
<button id="tab-button-editor" title="Editor" class="tab-button">
<span class="tab-button-content">
<img src="./app/img/editor-tab-icon.svg">
</span>
</button>
<button id="tab-button-instruments" title="Instruments" class="tab-button">
<span class="tab-button-content">
<img src="./app/img/instruments-tab-icon.svg">
</span>
</button>
</div>
<!-- ------------------------------------------------------- MAIN CONTROLS -->
<div id="main-controls-div">
<div id="extra-control-bpm-container" class="extra-control">
<button id="extra-control-bpm-reset">BPM:</button>
<span id="current-bpm"></span>
<input id="extra-control-bpm-slider" type="range" min="40" max="200" value="100" class="slider">
</div>
<button id="extra-control-play-button" class="extra-control">
<span id="extra-control-play-icon">
<img src="./app/img/play-icon.svg" width="32px">
</span>
</button>
<button id="extra-control-stop-button" class="extra-control disabled">
<span id="extra-control-stop-icon">
<img src="./app/img/stop-icon.svg" width="32px">
</span>
</button>
</div>
</div>
<!-- ------------------------------------------------------- FULL SCORE VIEW -->
<div id="score-minimap"></div>
</div>
<!-- ------------------------------------------------------- APP CONTENT -->
<div id="app-content" class="scrolling-content">
<!-- ------------------------------------------------------- TAB: Score -->
<div id="score-tab" class="tab-content">
<div id="score-tab-content"></div>
</div>
<!-- ------------------------------------------------------- TAB: Sections -->
<div id="sections-tab" class="tab-content">
<div id="sections-tab-content"></div>
</div>
<!-- ------------------------------------------------------- TAB: Instruments -->
<div id="instruments-tab" class="tab-content">
<div id="instruments-tab-content"></div>
</div>
<!-- ------------------------------------------------------- TAB: Editor -->
<div id="editor-tab" class="tab-content">
<div id="editor-tab-content">
<div id="editor-buttons-container">
<button id="editor-tab-apply-button" title="Apply" class="editor-button">
<span id="editor-tab-apply-icon" class="editor-icon">
<img src="./app/img/apply-icon.svg">
</span>
</button>
<button id="editor-tab-clipboard-button" title="Copy to clipboard" class="editor-button">
<span id="editor-tab-clipboard-icon" class="editor-icon">
<img src="./app/img/clipboard-icon.svg">
</span>
</button>
<button id="editor-tab-reload-button" title="Reload" class="editor-button">
<span id="editor-tab-reload-icon" class="editor-icon">
<img src="./app/img/reload-icon.svg">
</span>
</button>
</div>
<div id="editor-error-message"></div>
<textarea id="score-editor-textbox" wrap="off" class="score-editor"></textarea>
</div>
</div>
</div>
</div>
</body>