這裏簡單地介紹一下以前的代碼,這是html結構javascript
<body> <div class="wrap"> <ul class="pic-group"> <li><img src="./pic1.jpg" alt=""></li> <li><img src="./pic2.jpg" alt=""></li> <li><img src="./pic3.jpg" alt=""></li> <li><img src="./pic4.jpg" alt=""></li> <li><img src="./pic5.jpg" alt=""></li> </ul> <ol class="num-group"> <li class="current">1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ol> </div> </body>
css結構css
<style type="text/css"> * { margin: 0; padding: 0; } ul, li { list-style: none; } body { background-color: #000; } .wrap { position: relative; border: 8px solid #fff; margin: 100px auto; width: 400px; height: 250px; overflow: hidden; } .pic-group { position: absolute; } .pic-group li img { display: block; width: 100%; height: 100%; } .num-group { position: absolute; bottom: 5px; right: 0; height: 20px; } .num-group li { float: left; width: 20px; height: 20px; line-height: 20px; font-size: 10px; margin-right: 10px; background-color: #089e8a; color: #eee; text-align: center; border-radius: 10px; cursor: pointer; opacity: 0.8; } .num-group li:hover { box-shadow: 0 0 18px #000; } .num-group li.current { opacity: 1; color: #089a8a; background-color: #000; } </style>
JS 結構html
const oImage = document.getElementsByClassName("pic-group")[0]; const oNumber = document.getElementsByClassName("num-group")[0]; const numList = oNumber.getElementsByTagName("li"); for (let i = 0; i < numList.length; i++) { numList[i].onmouseover = () => { clearNumState(); show(i); } } const clearNumState = () => { for (const item of numList) { item.className = ""; } } let timer = null; const show = (index) => { numList[index].className = "current"; if (timer) clearInterval(timer); const target = -250 * index; let now = oImage.offsetTop; timer = setInterval(() => { if (now === target) { clearInterval(timer); } else { now += move(target); oImage.style.top = now + "px"; console.log(oImage.offsetTop); } }, 20); } const move = (target) => { // 當前值 const now = oImage.offsetTop; const differ = target - now; console.log(differ / 10); const res = differ > 0 ? Math.ceil(differ / 10) : Math.floor(differ / 10); return res; }
offsetHeight
獲取圖片元素的高度。好處1是咱們的移動函數不用限死。也爲後來將其變爲通用的一組代碼作鋪墊。自適應高度
元素主要有兩種辦法offsetHeight
居然是0?不是說好了能獲取自適應高度的嗎!const oHeight = oImage.getElementsByTagName("li")[0].offsetHeight; console.log(oHeight); // 0 !!! 0 !!!
window.onload = function() { const oT = document.getElementsByClassName("pic-group")[0]; const oI = oT.getElementsByTagName("li"); console.log(oI[0].offsetHeight); // 250 }
http://www.javashuo.com/article/p-hrrxznxw-du.html
這裏第 5 句 正是解答,圖片還在加載中,先執行了代碼。java
咱們須要的是等圖片加載完後執行JS的辦法
http://www.jb51.net/article/79233.htmasync
window.onload
,還有一個不太破壞代碼的是async/await
,但是那須要加載新的庫支持,因此這裏選擇了最開始的window.onload
。clearNumState
應該放在show函數
裏面const oImage = document.getElementsByClassName("pic-group")[0]; const oNumber = document.getElementsByClassName("num-group")[0]; const numList = oNumber.getElementsByTagName("li"); const imageList = oImage.getElementsByTagName("li"); const oHeight = imageList[0].offsetHeight; for (let i = 0; i < numList.length; i++) { numList[i].onmouseover = () => { // clearNumState(); show(i); } } const clearNumState = () => { for (const item of numList) { item.className = ""; } } let timer = null; const show = (index) => { clearNumState(); numList[index].className = "current"; if (timer) clearInterval(timer); const target = -oHeight * index; let now = oImage.offsetTop; timer = setInterval(() => { if (now === target) { clearInterval(timer); } else { now += move(target); oImage.style.top = now + "px"; console.log(oImage.offsetTop); } }, 20); } const move = (target) => { const now = oImage.offsetTop; const differ = target - now; console.log(differ / 10); const res = differ > 0 ? Math.ceil(differ / 10) : Math.floor(differ / 10); return res; } let autoTimer = null; let index = 0; const auto = () => { autoTimer = setInterval(() => { show(index); index < numList.length - 1 ? index++ : index = 0; }, 2000); } auto();
oImage.onmouseover = function() { if (autoTimer) clearInterval(autoTimer); } oImage.onmouseout = function() { auto(); }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> * { margin: 0; padding: 0; } ul, li { list-style: none; } body { background-color: #000; } .wrap { position: relative; border: 8px solid #fff; margin: 100px auto; width: 400px; height: 250px; overflow: hidden; } .pic-group { position: absolute; } .pic-group li img { display: block; width: 100%; height: 100%; } .num-group { position: absolute; bottom: 5px; right: 0; height: 20px; } .num-group li { float: left; width: 20px; height: 20px; line-height: 20px; font-size: 10px; margin-right: 10px; background-color: #089e8a; color: #eee; text-align: center; border-radius: 10px; cursor: pointer; opacity: 0.8; } .num-group li:hover { box-shadow: 0 0 18px #000; } .num-group li.current { opacity: 1; color: #089a8a; background-color: #000; } </style> </head> <body> <div class="wrap"> <ul class="pic-group"> <li><img src="./pic1.jpg" alt=""></li> <li><img src="./pic2.jpg" alt=""></li> <li><img src="./pic3.jpg" alt=""></li> <li><img src="./pic4.jpg" alt=""></li> <li><img src="./pic5.jpg" alt=""></li> </ul> <ol class="num-group"> <li class="current">1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ol> </div> </body> <script type="text/javascript"> var Carousel = function(cname) { this.init(cname); } Carousel.prototype = { init: function(cname) { let me = this; me.oWrap = document.getElementsByClassName(cname)[0]; me.oImage = me.oWrap.getElementsByTagName("ul")[0]; me.imageList = me.oImage.getElementsByTagName("li"); me.imageHeight = me.imageList[0].offsetHeight; me.oNumber = me.oWrap.getElementsByTagName("ol")[0]; me.numberList = me.oNumber.getElementsByTagName("li"); me.index = 0; me.moveTimer = null; me.autoTimer = null; for (let i = 0; i < me.numberList.length; i++) { me.numberList[i].onmouseover = function() { me.index = i; me.Show(i); } } me.Auto(); me.oImage.onmouseover = function() { clearInterval(me.autoTimer); } me.oImage.onmouseout = function() { me.Auto(); } }, Show: function(index) { let me = this; me.clearClass(index); me.Move(index); }, Move(index) { let me = this; let target = -index * me.imageHeight; let now; let speed; if (me.moveTimer) clearInterval(me.moveTimer); me.moveTimer = setInterval(() => { now = me.oImage.offsetTop; speed = (target - now) / 10; speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed); now === target ? clearInterval(me.moveTimer) : me.oImage.style.top = now + speed + "px"; }, 20); }, Auto() { let me = this; me.autoTimer = setInterval(() => { me.index < me.imageList.length - 1 ? me.index++ : me.index = 0; me.Show(me.index); }, 2000); }, clearClass(index) { let me = this; for (let i = 0; i < me.numberList.length; i++) { me.numberList[i].className = ""; } me.numberList[index].className = "current"; } } window.onload = function() { new Carousel("wrap"); } </script> </html>