浏览器缩放resize

    var timer = null;
    $(window).resize(function () {
        if(timer) {
            clearTimeout(timer)
        } else {
            setTimeout(mediaScreen, 500);
        }
    });

原文地址:https://www.cnblogs.com/hlyin/p/6699384.html