일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- iOS 개발자
- keyframes
- iPhone
- hover
- 자바스크립트
- image
- html5
- react
- HTML
- Animation
- effect
- xcode
- 프론트엔드
- 개발자
- IOS
- SWIFT
- 비전공자
- ipad
- 풀스택
- css3
- button
- 비전공 개발자
- front-end
- 백엔드
- javascript
- php
- jQuery
- CSS
- MAC
- 애니메이션
- Today
- Total
목록Drum (2)
비전공자 개발일기

Key Mapping E Crash R Ride F Floor tom G Mid tom H High tom V B Kick J Snare I Hi-Hat Open K Hi-Hat Closed JavaScript Drum Kit J B V H G F E R I K @import url(https://fonts.googleapis.com/css?family=Handlee|Pacifico); html, body { padding: 0; margin: 0; background-color: #fff; } .main-wrapper { margin: 30px auto 0; width: 1080px; text-align: center; } .main-title { font-family: 'Pacifico', cursi..

A clap S hihat D kick F openhat G boom H ride J snare K tom L tink function playSound(e) { const audio = document.querySelector(`audio[data-key="${e.keyCode}"]`) const key = document.querySelector(`.key[data-key="${e.keyCode}"]`) // console.log(audio) if (!audio) return; audio.currentTime = 0; audio.play(); // console.log(key) key.classList.add('playing'); } function removeTransition(e) { if (e...