[javascript30] JavaScript Drum kit
36154 ワード
1. JavaScript Drum kit
2.完全なコード
style.css
html {
font-size: 10px;
background: url('./background.jpg') bottom center;
background-size: cover;
}
body,html {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.keys {
display: flex;
flex: 1;
min-height: 100vh;
align-items: center;
justify-content: center;
}
.key {
border: .4rem solid black;
border-radius: .5rem;
margin: 1rem;
font-size: 1.5rem;
padding: 1rem .5rem;
transition: all .07s ease;
width: 10rem;
text-align: center;
color: white;
background: rgba(0,0,0,0.4);
text-shadow: 0 0 .5rem black;
}
.playing {
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 1rem #ffc600;
}
kbd {
display: block;
font-size: 4rem;
}
.sound {
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: .1rem;
color: #ffc600;
}
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS Drum Kit</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="keys">
<div data-key="65" class="key">
<kbd>A</kbd>
<span class="sound">clap</span>
</div>
<div data-key="83" class="key">
<kbd>S</kbd>
<span class="sound">hihat</span>
</div>
<div data-key="68" class="key">
<kbd>D</kbd>
<span class="sound">kick</span>
</div>
<div data-key="70" class="key">
<kbd>F</kbd>
<span class="sound">openhat</span>
</div>
<div data-key="71" class="key">
<kbd>G</kbd>
<span class="sound">boom</span>
</div>
<div data-key="72" class="key">
<kbd>H</kbd>
<span class="sound">ride</span>
</div>
<div data-key="74" class="key">
<kbd>J</kbd>
<span class="sound">snare</span>
</div>
<div data-key="75" class="key">
<kbd>K</kbd>
<span class="sound">tom</span>
</div>
<div data-key="76" class="key">
<kbd>L</kbd>
<span class="sound">tink</span>
</div>
</div>
<audio data-key="65" src="sounds/clap.wav"></audio>
<audio data-key="83" src="sounds/hihat.wav"></audio>
<audio data-key="68" src="sounds/kick.wav"></audio>
<audio data-key="70" src="sounds/openhat.wav"></audio>
<audio data-key="71" src="sounds/boom.wav"></audio>
<audio data-key="72" src="sounds/ride.wav"></audio>
<audio data-key="74" src="sounds/snare.wav"></audio>
<audio data-key="75" src="sounds/tom.wav"></audio>
<audio data-key="76" src="sounds/tink.wav"></audio>
<script>
function playSound(e){
const audio = document.querySelector(`audio[data-key="${e.keyCode}"]`);
const key = document.querySelector(`.key[data-key="${e.keyCode}"]`);
if (!audio) return;
audio.currentTime = 0;
audio.play();
key.classList.add('playing');
}
function removeTransition(e){
if(e.propertyName !== 'transform') return;
this.classList.remove('playing');
}
const keys = document.querySelectorAll('.key');
keys.forEach(key => key.addEventListener('transitionend',removeTransition));
window.addEventListener('keydown', playSound);
</script>
</body>
</html>
3.動作手順
window.addEventListener('keydown', playSound);
keydown 이벤트를 확인 후 playSound 함수를 호출한다.
3-1. PlaySound()関数で入力した値に基づいて音源ファイルを再生成します.3-2. ClassListでplay cssを追加します.
4.
const keys = document.querySelectorAll('.key');
keys.forEach(key => key.addEventListener('transitionend',removeTransition));
transitionend 이벤트를 확인한 후 removeTransition 함수를 호출한다.
4. HTML, CSS
<audio>ラベル
<audio data-key="76" src="sounds/tink.wav"></audio>
|放送<kbd>タグ
<div data-key="76" class="key">
<kbd>L</kbd>
<span class="sound">tink</span>
</div>
.css内#,。
#
:id値をセレクタとして指定します..
:class値を選択子として指定します.5. JAVASCRIPT
Document.querySelector()
<audio data-key="68" src="sounds/kick.wav"></audio>
const audio = document.querySelector(`audio[data-key="${e.keyCode}"]`);
=>audioラベルのdata-key値は入力値と同じです.Document.querySelectorAll()
const keys = document.querySelectorAll('.key');
=>リスト形式で戻るaudio.play()
audio.play();
key.classList
key.classList.add('playing');
=>classListにplayというクラス値を追加=>>新しいプレイクラスが追加され、cssが有効になります.
.playing {
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 1rem #ffc600;
}
transitionend
const keys = document.querySelectorAll('.key');
keys.forEach(key => key.addEventListener('transitionend',removeTransition));
=>cssアプリケーションが完了すると発生し、変換が発生するとremoveTransition関数を呼び出してcssを再削除します.Reference
この問題について([javascript30] JavaScript Drum kit), 我々は、より多くの情報をここで見つけました https://velog.io/@hadoyaji/javascript30-JavaScript-Drum-kitテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol