JavaScript30 為Wes Bos推出的一項為期30天的挑戰,旨在幫助人們用純JavaScript來實現效果,初學者若想在JS方面快速精進,不妨一試。現在你看到的是該系列總結的第一篇,不知何時能做完30題,就不在此信誓旦旦立flag了。
我的專案地址是 js 1/30。
實現效果
利用JS實現模擬打鼓的效果,敲擊鍵盤字母(A-L),即可播放對應聲音,同時當前字母伴隨敲擊聲效出現動畫。
檢視 demo。
解題思路
- 監聽鍵盤事件
window.addEventListener(`keydown`, playaudio);
複製程式碼
- 建立function playaudio()
- 利用當前e.keyCode來獲取對應鍵碼的div標籤和audio標籤。
- 判斷對應的audio是否存在,若是則播放該音訊,並新增按鈕樣式。
- 新增transitionend事件,移除樣式,恢復原狀。
初始程式碼
頁面基礎佈局
<div class="keys">
<div data-key="65" class="key">
<kbd>A</kbd>
<span class="sound">clap</span>
</div>
······
<!-- B-K部分程式碼省略,請參閱程式碼 -->
<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="76" src="sounds/tink.wav"></audio>
複製程式碼
CSS程式碼
html {
font-size: 10px;
background: url(http://i.imgur.com/b9r5sEL.jpg) bottom center;
background-size: cover;
/* 把背景影像擴充套件至足夠大,以使背景影像完全覆蓋背景區域。 */
}
body,html {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.keys {
display: flex;
flex: 1;
min-height: 100vh;
/* 設定段落的最小高度,其中vh是可視區百分比高度單位,如1vh等於可視區高度的百分之一 */
align-items: center;
/* 彈性盒子元素在該行的側軸(縱軸)上居中放置。 */
justify-content: center;
/* 彈性盒子元素將向行中間位置對齊。該行的子元素將相互對齊並在行中居中對齊,
同時第一個元素與行的主起始位置的邊距等同與最後一個元素與行的主結束位置的邊距 */
}
.key {
border: .4rem solid black;
border-radius: .5rem;
/* 向 div 元素新增圓角邊框 */
margin: 1rem;
font-size: 1.5rem;
padding: 1rem .5rem;
transition: all .07s linear;
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;
}
複製程式碼
解題難點
1.如何將鍵盤A-L按鍵與對應標籤及音訊聯絡起來?
在初始程式碼中,我們可以看到div.key和audio都傳入了一個data-key,可以此為突破口,只需找到與e.keyCode等值的標籤即可。
const audio = document.querySelector(`audio[data-key="${e.keyCode}"]`);
const key = document.querySelector(`div[data-key="${e.keyCode}"]`);
複製程式碼
通過此網站可快速查詢keyCode.
2.當持續按住按鍵,如何使得音訊馬上相應?
設定audio播放時間為0
audio.currentTime = 0;
複製程式碼
3.樣式生效後,如何使得頁面標籤恢復原狀?
新增transitionend事件,移除樣式。
transitionend 事件會在 CSS transition 結束後觸發。
4.長時間按住某個按鍵之後,會發現一個bug,div.key動畫揮之不去。
同樣新增鍵盤監聽事件,利用keyup移除效果。
window.addEventListener(`keyup`,removeT);
複製程式碼
JavaScript完整程式碼如下:
<script>
function removeT(e) {
if (e.propertyName !== `transform`) return;
e.target.classList.remove(`playing`);
}
function playaudio(e) {
const audio = document.querySelector(`audio[data-key="${e.keyCode}"]`);
const key = document.querySelector(`div[data-key="${e.keyCode}"]`);
if (!audio) return;
key.classList.add(`playing`);
audio.currentTime = 0;
audio.play();
}
const keys = document.querySelectorAll(`.key`);
keys.forEach(key => key.addEventListener(`transitionend`, removeT));
window.addEventListener(`keydown`, playaudio);
window.addEventListener(`keyup`, removeT);
複製程式碼
注意事項
- 區分大小寫:
propertyName,keyCode等等,這道題我做了兩遍,兩次都摔在了這個坑裡,引以為戒。 - querySelectorAll:
返回與指定的選擇器組匹配的文件中的元素列表 ,需要注意的是返回物件為 NodeList ,而不是Array,也可以用Array.from()將其轉換為數列,當然即使不轉換,也可以使用forEach函式遍歷。 - forEach函式:較for迴圈更為簡潔,示例如下:
var arr = [1, 2, 3];
for(var i = 0; i < arr.length; i++) {
console.log(arr[i]);
}
複製程式碼
等同於,
var arr = [1, 2, 3];
arr.forEach((val) => {
console.log(arr[i]);
})
複製程式碼
也可用用reduce、map、filter這樣的函式代替,詳見該網站。
反引號“包裹字串,常與${變數}連用。
普通字串:
var a = 5;
var b = 10;
console.log("Fifteen is " + (a + b) + " and
not " + (2 * a + b) + ".");
// "Fifteen is 15 and
// not 20."
複製程式碼
模板字串:
var a = 5;
var b = 10;
console.log(`Fifteen is ${a + b} and
not ${2 * a + b}.`);
// "Fifteen is 15 and
// not 20."
複製程式碼
另,在回顧總結中,發現liyuechun的部落格,受益良多,記錄一筆。