$(function () {
$(window).resize(function () {
if ($(window).width() > 1100) {
$("#logo").on('mouseenter.anim', function () {
$(this).stop(true).animate({
paddingTop: "0px",
paddingBottom: "20px"
}, 200);
}).on('mouseleave.anim', function () {
$(this).stop(true).animate({
paddingTop: "20px",
paddingBottom: "0"
}, 200);
});
} else {
$("#logo").off('mouseenter.anim mouseleave.anim');
}
}).resize();
});
如何替换此脚本中的窗口宽度以使用视口宽度,以使其与我的CSS媒体查询匹配?