轮播图js编写

Posted 疯子7314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了轮播图js编写相关的知识,希望对你有一定的参考价值。

//面向对象
function Left() {
    this.index = 0;
    this.lefthover = $(‘#left-content‘);
    this.listenhover()
}
//监听hover事件(鼠标放上去轮播图停止)
Left.prototype.listenhover = function () {
    var self = this;
    this.lefthover.hover(function () {
        clearInterval(self.timer)
    },function () {
       self.loop();
    });
};
//实现轮播图的滚动
Left.prototype.loop = function () {
    var leftUL = $(‘#left-ul‘);
    var self = this;
    this.timer = setInterval(function () {
        if (self.index >= 3){
            self.index = 0
        }else {
            self.index += 1;
        }
        leftUL.animate({‘left‘:-795 * self.index},500)
    },2000)
};

//轮播图继续滚动
Left.prototype.run = function () {
    this.loop()
};

//等待html全部加载完成后执行
$(function () {
   var left = new Left();
   left.run()
});

 

以上是关于轮播图js编写的主要内容,如果未能解决你的问题,请参考以下文章