var picture = document.querySelectorAll(".selected"); var points = document.querySelectorAll("#list li"); var prev = document.getElementById("prev"); var next = document.getElementById("next"); var container = document.getElementById("container"); var current = 0; // 切换方法 function autoPlay(ind) { console.log(ind); // 清空所有样式 for(var i=0;i picture.length - 1) { current = 0; } autoPlay(current); } // 自动轮播 var timer = setInterval(function(){ next.onclick() },1000); // 鼠标划过 container.onmousemove = function() { prev.style.display = 'block'; next.style.display = 'block'; clearInterval(timer); } // 鼠标划出 container.onmouseout = function() { prev.style.display = 'none'; next.style.display = 'none'; timer = setInterval(function(){ next.onclick() },1000); }