70 lines
2.9 KiB
HTML
70 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>好和弦的鋼琴鍵盤顯示器</title>
|
||
<link rel="stylesheet" href="style.css">
|
||
<script src="p5.min.js"></script>
|
||
<script src="tonal.min.js"></script>
|
||
|
||
<script src="webmidi.js"></script>
|
||
<script src="lib.js"></script>
|
||
<script src="globals.js"></script>
|
||
<script src="piano-visualizer.js"></script>
|
||
</head>
|
||
|
||
<body>
|
||
<div id="main">
|
||
<div id="controls" class="center">
|
||
<div>
|
||
<h3>鋼琴鍵盤顯示器 by NiceChord+sup39</h3>
|
||
<div style="display: flex; justify-content: space-around;">
|
||
<div>
|
||
<h5>選擇 MIDI 裝置</h5>
|
||
<input id="slider" type="range" min="0" max="0" value="0">
|
||
<div id="device">Select Input: </div>
|
||
</div>
|
||
<div style="display: flex; flex-direction: column; justify-content: center; align-items: start;">
|
||
<div>
|
||
<label for="colorpicker">選擇顏色</label>
|
||
<input type="color" id="colorpicker" value="#ff0090" oninput="changeColor()">
|
||
</div>
|
||
<div style="display: flex; align-items: center;">
|
||
<span style="margin-right: 5px;">彩虹模式</span>
|
||
<input type="checkbox" id="rainbow-mode-checkbox" onclick="toggleRainbowMode(this)">
|
||
<label for="rainbow-mode-checkbox" class="custom-checkbox">
|
||
<span class="switch-txt" turnOn="On" turnOff="Off"></span>
|
||
</label>
|
||
</div>
|
||
<div style="display: flex; align-items: center;">
|
||
<span style="margin-right: 5px;">力度模式</span>
|
||
<input type="checkbox" id="velocity-mode-checkbox" onclick="toggleVelocityMode(this)">
|
||
<label for="velocity-mode-checkbox" class="custom-checkbox">
|
||
<span class="switch-txt" turnOn="On" turnOff="Off"></span>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<br />
|
||
</div>
|
||
</div>
|
||
|
||
<div class="center">
|
||
<div id="piano-visualizer">
|
||
<!-- Our sketch will go here! -->
|
||
</div>
|
||
<span style="font-size: 11px;">
|
||
TIME:使用時間 | NOTE COUNT:總彈奏音符數 | NPS:最近一秒鐘彈奏音符數(括號為歷史最大值) | LEGATO:圓滑指數(最近一秒鐘平均來說有幾個鍵被同時按住) <br />
|
||
CALORIES:消耗熱量(估計值,好玩就好)| PEDALS:左右踏板深度顯示 <br />
|
||
(密技:點鍵盤最左上角的角落,可以儲存截圖) <br /><br />
|
||
</span>
|
||
<div>
|
||
<div>覺得好用嗎?到 <a href="https://nicechord.com">NiceChord.com</a> 逛逛支持好和弦!好和弦原版原始碼在 <a href="https://github.com/wiwikuan/pianometer">GitHub</a>。</div>
|
||
<div>此版本經 <a href="https://post.sup39.dev/@miku">サポミク</a> 加工過。加工後的原始碼在 <a href="https://forgejo.sup39.dev/sup39/pianometer">supGit</a>。</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
|
||
</html>
|