消息显示隐藏定时器
Posted love9happy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了消息显示隐藏定时器相关的知识,希望对你有一定的参考价值。
//显示隐藏二维码
var timer;
$(‘.bar_txt‘).mouseenter(function(){
clearTimeout(timer);
$(‘.bar_main‘).hide();
$(‘.bar_txt‘).removeClass(‘active‘);
$(this).addClass(‘active‘);
$(this).siblings(‘.bar_main‘).show();
}).mouseleave(function(e){
timer = setTimeout(function () {
$(‘.bar_main‘).hide();
$(‘.bar_txt‘).removeClass(‘active‘);
}, 500);
});
$(‘.bar_main‘).mouseenter(function(){
clearTimeout(timer);
}).mouseleave(function(){
$(‘.bar_main‘).hide();
$(‘.bar_txt‘).removeClass(‘active‘);
});
以上是关于消息显示隐藏定时器的主要内容,如果未能解决你的问题,请参考以下文章