最新回答 / 浪奇学长
你css样式写在行内才可以像视频内这样写,不然就应该用
list.style.left = list.offsetLeft + offset + 'px' ;也可以console.log()看看俩个的属性,就知道了。
2019-10-20
最新回答 / _堇年
原因在这里 var myIndex = parseInt(this.getAttribute('index')); var offset = -600 * (myIndex - index); animate(offset);假如offset =0,可以推出myIndex =index;当myIndex =index时,其实就是当前显示高亮的小圆点和你点击的小圆点是同一个小圆点。既然这样;那么在function animate(...
2019-09-18
最新回答 / 遇上兔跑的龟
next.onclick = function(){ if (animated) { return; } if (!animated) { animate(-600); } if(index == 5){ index = 1; }else{ index += 1; } showButton(); console.log...
2019-09-18