-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.htm
executable file
·43 lines (38 loc) · 1.46 KB
/
main.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="form">
<form action="" method="" id="start">
<h1 id="caption">Choose file</h1>
<p>
Currently only Malody (<code>*.mc</code>) files are accepted. You can directly drag and drop files.
</p>
<p>
<label>Select chart: <input type="file" id="chart" /></label>
</p>
<p>
<label>Select music: <input type="file" id="music" /></label> <small>(Optional)</small>
</p>
<p>
Music speed: <small style="color: gray">x</small><input type="number" min="0.5" max="3.0" step="0.1" id="speed" value="1.0"/>
</p>
<p>
Chart speed: <input type="number" min="0.1" max="1.5" step="0.1" id="chartspeed" value="1.0"/>
<small> pixel per millisecond </small>
</p>
<p>
Offset: <input type="number" min="-1000" max="1000" step="10" id="offset" value="0" />
<small> ms <br> (The larger the offset, the earlier the music.)</small>
</p>
<button onclick="onPlayButtonClicked(event);">Play!</button>
</form>
</div>
<table>
<tbody id="main" display="none" />
</table>
<script type="text/javascript" src="logic.js">
</script>
</body>
</html>