function AutoPlay(){
this.imgList = document.getElementById("img-list");
this.banner = document.getElementById("banner");
this.arr = document.getElementById("arr");
this.toLeft = document.getElementById("toLeft");
this.toRight = document.getElementById("toRight");
this.navList = document.getElementById("banner-nav-list");
this.navLi = this.navList.children;
this.imgLi = this.imgList.children;
this.index = 0;
this.timer = null;
}
AutoPlay.prototype.init = function(){
this.auto();
this.bannerOver();
this.bannerOut();
this.leftClick();
this.rightClick();
}
AutoPlay.prototype.auto = function(){
this.timer = setInterval(this.indexChange.bind(this),1000);
return this;
}
AutoPlay.prototype.indexChange =