-
Latest Chinese 中文 topics – The freeCodeCamp Forum查看全部
-
window.onload=function(){}//window.onload事件當(dāng)文檔加載完后開(kāi)始獲取元素
聲明變量獲取元素時(shí):
在var中, document.getElementById('')獲取元素ID
? ? ? ? ? ? ? ? ?.getElementsTagName('')獲取標(biāo)簽元素,注意獲取標(biāo)簽元素時(shí)Element后面多一個(gè)s
添加事件綁定:(觸發(fā)事件要做什么)
? ? 點(diǎn)擊箭頭next時(shí),進(jìn)行圖片位置偏移,即改變圖片的left值
? ? next.onclick = function(){
? ? ? ? list.style.left = parseInt(list.style.left) + 偏移參數(shù) + 'px';
}
? ? 封裝為函數(shù):把正、負(fù)參數(shù)通過(guò)函數(shù)調(diào)用
? ? function jiantou(canshu){
? ? ? ? list.style.left = parseInt(list.style.left) + canshu + 'px';
}
? ? next.onclick=function(){
? ? ? ? jiantou(-canshu)//輸入一個(gè)負(fù)的偏移參數(shù)
}
? ? prev.onclick=function(){
? ? ? ? jiantou(+canshu)//輸入一個(gè)正的偏移參數(shù)
}
查看全部 -
oo查看全部
-
無(wú)縫滾動(dòng) 輪播圖 放大鏡 購(gòu)物車 鼠標(biāo)拖拽 狂亂小球 頂部和側(cè)邊導(dǎo)航條查看全部
-
setTimeout()的用法。
查看全部
舉報(bào)