style.css
body,html {
margin: 0;
padding: 0;
font-family: sans-serif;
font-size: 10px;
background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url('https://blenderartists.org/uploads/default/original/3X/7/8/786d427ea337e3ba75814b3ce986ff881182e4c7.jpg');
background-size: cover;
background-repeat: no-repeat;
}
.keys {
display: flex;
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>Baba 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="song/clap.wav"></audio>
<audio data-key="83" src="song/hihat.wav"></audio>
<audio data-key="68" src="song/kick.wav"></audio>
<audio data-key="70" src="song/openhat.wav"></audio>
<audio data-key="71" src="song/boom.wav"></audio>
<audio data-key="72" src="song/ride.wav"></audio>
<audio data-key="74" src="song/snare.wav"></audio>
<audio data-key="75" src="song/tom.wav"></audio>
<audio data-key="76" src="song/tink.wav"></audio>
<script type="text/javascript">
const playstate = (e)=>{
if (e.propertyName !== 'transform') return;
e.target.classList.remove('playing');
}
const palyMusic = (e) =>{
let audio = document.querySelector(`audio[data-key="${e.keyCode}"]`);
let key = document.querySelector(`div[data-key="${e.keyCode}"]`);
if(!audio)return;
key.classList.add('playing');
audio.currentTime = 0;
audio.play();
}
window.addEventListener('keydown', palyMusic);
const keys = Array.from(document.querySelectorAll('.key'));
keys.forEach(songs)
function songs(coll){
coll.addEventListener('transitionend', playstate);
}
</script>
</html>
link
<!-- https://developer.mozilla.org/en-US/docs/Web/API/TransitionEvent -->
No comments:
Post a Comment