INNER CODE UNIT · JavaScript
makeAnimation
sdkdeepa/Udemy-web-bootcamp · Drum-Kit/index.js:72
function makeAnimation(currentKey){
var activeButton=document.querySelector("."+currentKey);
activeButton.classList.add("pressed");
setTimeout(function(){
activeButton.classList.remove("pressed");
},100);
}