js实现无缝轮播

2021-07-02 12:04

阅读:602

YPE >

标签:lang   oat   win   int   null   over   速度   内容   weight   

span>html>
lang="en">

charset="UTF-8">
23333<span></span>




class="warp">
    id="imgs" class="imgs">
  • 1

  • 2

  • 3

  • 4

  • 5




//向右的判断
//if(Math.abs(oUl.offsetLeft)==0){
// oUl.style.left=-liCount*liWidth+‘px‘;
// }
      oUl.style.left=oUl.offsetLeft+speed+‘px‘;    
},100);
oUl.onmouseover=function(){
clearInterval(timer);
};
oUl.onmouseout=function(){
timer=setInterval(function(){
if(Math.abs(oUl.offsetLeft)>=liWidth*liCount){
oUl.style.left="0px";
}
oUl.style.left=oUl.offsetLeft+speed+‘px‘;
},100)
}
}

js实现无缝轮播

标签:lang   oat   win   int   null   over   速度   内容   weight   

原文地址:http://www.cnblogs.com/Marlboro-pm/p/7127620.html


评论


亲,登录后才可以留言!