课程
/前端开发
/jQuery
/JS插件开发之-Tab选项卡
是不是 mouseover 与hover 事件有冲突
2019-07-05
源自:JS插件开发之-Tab选项卡 5-1
正在回答
this.timer = null;
if (config.invoke > 0 && config.invoke <= _this_.tabItems.length)
{
this.loop = config.invoke -1;
}
else
this.loop = 0;
this.autoPlay();
this.tab.hover(function () {
window.clearInterval(_this_.timer);
},
function () {
_this_.autoPlay();
});
举报
Tab选项卡,通过教程学习,我们一一剖析它的实现原理
3 回答this.tab.hover()方法执行有问题,自动播放到第二个就停止了
1 回答自动执行后,无法停止
1 回答发现一个小bug,当同时设置{"triggerType": "mouseover", "effect": "fade"}
2 回答无法自动播放
4 回答自动播放的问题