2023-06-05 00:36:25 +00:00
|
|
|
<!DOCTYPE html>
|
2023-06-04 01:01:38 +00:00
|
|
|
<head>
|
|
|
|
<title>MidiTrainer</title>
|
|
|
|
<link rel="stylesheet" href="assets/css/reset.css">
|
|
|
|
<link rel="stylesheet" href="assets/css/base.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
2023-06-04 21:32:08 +00:00
|
|
|
<div id="note-render"></div>
|
2023-06-05 18:09:37 +00:00
|
|
|
<div class="checkboxes">
|
|
|
|
<input type="checkbox" id="naturals" checked><label for="naturals">Natural</label>
|
|
|
|
<input type="checkbox" id="sharps"><label for="sharps">Sharps</label>
|
|
|
|
<input type="checkbox" id="flats"><label for="flats">Flats</label>
|
|
|
|
<input type="checkbox" id="extended"><label for="extended">Extended</label>
|
|
|
|
</div>
|
2023-06-04 14:22:55 +00:00
|
|
|
<object id="piano" data="assets/img/piano-keyboard.svg" type="image/svg+xml" width="100%" type="image/svg+xml"></object>
|
2023-06-04 21:32:08 +00:00
|
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vexflow@4.0.3/build/cjs/vexflow.js"></script>
|
2023-06-05 00:36:25 +00:00
|
|
|
<script src="assets/scripts/map.js"></script>
|
2023-06-04 21:32:08 +00:00
|
|
|
<script src="assets/scripts/render.js"></script>
|
2023-06-04 01:01:38 +00:00
|
|
|
<script src="assets/scripts/midi.js"></script>
|
2023-06-05 00:36:25 +00:00
|
|
|
<script src="assets/scripts/practice.js"></script>
|
2023-06-04 01:01:38 +00:00
|
|
|
</body>
|