我正在使用hoverFlow一个 JQuery 插件,到目前为止按预期工作,但是我想在屏幕调整大小小于 799 像素时将其删除,并在屏幕调整大小超过 800 像素时将其添加回来。这是我的代码:
function setEffects() {
if(document.documentElement.clientWidth >= 800){
if($("#menu-main-nav-menu a span").length == 0){
$("#menu-main-nav-menu a").append("<span> </span>");
$("#menu-main-nav-menu a").hover(function(e) {
$(this).hoverFlow(e.type, { width: 248 }, 200)
.css('overflow', 'visible')
.find('span')
.hoverFlow(e.type, { width: 5 }, 200)
}, function(e) {
$(this).hoverFlow(e.type, { width: 233 }, 200)
.css('overflow', 'visible')
.find('span')
.hoverFlow(e.type, { width: 20 }, 200)
});
}
}else{
if($("#menu-main-nav-menu a span").length != 0){
$("#menu-main-nav-menu a").remove('span');
}
}
}
$(document).ready(setEffects);
window.onresize = setEffects;
在此先感谢,如果您有任何问题,请告诉我:-)