本文共 1302 字,大约阅读时间需要 4 分钟。
window.onload = function(){ // alert(1) // 1、自动播放-- 左侧 多次循环 left减小 var oList = this.document.getElementById('list') var oBtn01 = document.getElementById('btn01') var oBtn02 = document.getElementById('btn02') var oSlide = document.getElementById('slide') var num = 0 // left取值 var speed = -5 var oTimer = null // 程序复制两份产品 oList.innerHTML += oList.innerHTML // oList.innerHTML = oList.innerHTML + oList.innerHTML oTimer = setInterval(fnMove, 50) function fnMove(){ num += speed // 如果left小于-1000,回到left为0继续左侧移动 if(num < -1000) { num = 0 } if(num>0) { num = -1000 } oList.style.left = num +'px' } // 2、左右箭头单击,右 -- 右侧移动 左 -- 左侧移动 oBtn02.onclick = function(){ speed = 5 } oBtn01.onclick = function(){ speed = -5 } // 3、鼠标滑过停止播放 - 鼠标离开继续播放 oSlide.onmouseover = function(){ // 停止定时器 clearInterval(oTimer) } oSlide.onmouseout = function(){ // 开启定时器 oTimer = setInterval(fnMove, 50) }}
转载地址:http://mmkwo.baihongyu.com/