this.tabItem.mouseover(function(ev){
ev.stopPropagation();
window.clearTimeout(_this_.timer);
}).mouseout(function(){
_this_.autoPlay();
});当事件为mouseover时,除了要阻止冒泡意外,还要在mouseover中清除_this_.timer,在mouseout后再调用_this_.autoPlay()。
2.对于高版本的jQuery size()方法 用length代替即可;
ev.stopPropagation();
window.clearTimeout(_this_.timer);
}).mouseout(function(){
_this_.autoPlay();
});当事件为mouseover时,除了要阻止冒泡意外,还要在mouseover中清除_this_.timer,在mouseout后再调用_this_.autoPlay()。
2.对于高版本的jQuery size()方法 用length代替即可;
.tab-nav li{float:left;}就可以左浮动了 ,前面的.tab.tab-nav要改成.tab-nav才会有视频那300*300的效果
2017-11-12