(function() { // 导航栏展示/关闭 $(".header-right .header-right-list").bind("mouseenter",function(){ var l = $(this).find('.jynav-list').length; if(l >= 0){ $(this).find('.jynav-list-title').css('color', '#2cb7ca') $(this).find('.jynav-list-title').addClass('set-after') $(this).find('.jynav-list').toggle() $(this).siblings().find('.jynav-list').hide() var hasClass = $(this).find('.jynav-list').hasClass('case-row-group') if(hasClass) { $(this).find('.jynav-list.case-row-group').css('display', 'flex') } } }) $(".header-right .header-right-list").bind("mouseleave",function(){ $(this).find('.jynav-list-title').css('color', '#1D1D1D') $(this).find('.jynav-list-title').removeClass('set-after') $(".header-right .header-right-list").find('.jynav-list').hide() }) //隐藏弹窗 function hideUserInfoPop (time) { clearTimeout(window.hideUserInfoTm) window.hideUserInfoTm = setTimeout(function () { $(".work-user-info").hide() }, time || 0) } function addPopListener (selector, time) { $(selector).mouseenter(function () { clearTimeout(window.hideUserInfoTm) $(".work-user-info").show() }) $(selector).mouseleave(function () { hideUserInfoPop(time) }) } addPopListener('.work-user-info') addPopListener('.nav-avatar', 500) })() function toastFn (text, duration) { if (!duration) { duration = 1000 } var _html = "" _html+='
' _html+='' + text + '
' $('body').append(_html) setTimeout(function(){ $(".custom-toast").fadeOut().remove(); },duration) }