Add web-vanilla
This commit is contained in:
36
web-vanilla/mania/mania.html
Normal file
36
web-vanilla/mania/mania.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>osu!mania playfield</title>
|
||||
|
||||
<link rel="stylesheet" href="../style.css">
|
||||
<script src="../shared.js"></script>
|
||||
<script src="mania.js"></script>
|
||||
|
||||
|
||||
<canvas id="playfield" width="800" height="600" style="border: 1px solid #000000"></canvas>
|
||||
<br>
|
||||
|
||||
<label for="columnstart">Column start</label><br>
|
||||
<input type="range" id="columnstart" min="0" max="200" value="150">
|
||||
<output id="columnstart_out"></output><br>
|
||||
|
||||
<label for="columnwidth">Column width</label><br>
|
||||
<input type="range" id="columnwidth" min="16" max="70" value="40">
|
||||
<output id="columnwidth_out"></output><br>
|
||||
|
||||
<label for="hitposition">Hit position</label><br>
|
||||
<input type="range" id="hitposition" min="350" max="480" value="420">
|
||||
<output id="hitposition_out"></output><br>
|
||||
|
||||
<label for="scrollspeed">Scroll speed</label><br>
|
||||
<input type="range" id="scrollspeed" min="12" max="40" value="28">
|
||||
<output id="scrollspeed_out"></output><br>
|
||||
|
||||
<label for="noteratio">Note ratio</label><br>
|
||||
<input type="range" id="noteratio" min="0" max="1" value="0.5" step="0.1">
|
||||
<output id="noteratio_out"></output><br>
|
||||
|
||||
<label for="keycount">Key count</label><br>
|
||||
<input type="range" id="keycount" min="4" max="9" value="7">
|
||||
<output id="keycount_out"></output><br>
|
||||
Reference in New Issue
Block a user