无缝轮播,从右到左写好了,但是从左到右,就是写不好,
var timer = setInterval(autoPlay,20);
function autoPlay(){
if(Le <= -carouselListWrapperW ){
Le = 0;
}else{
Le--;
}
carouselList.css({
'left': Le + 'px'
})
}
这是从从右到左的,
var timer = setInterval(autoPlay,20);
function autoPlay() {
if(Le >= 0) {
Le ++;
} else {
Le=0
}
carouselList.css({
'left': Le + 'px'
})
}
这个是从左到右的,但是只轮播页面上可以看得见的,其他轮播不了,求大神,帮看看,非常感谢
相关分类