当用户缩小触摸屏设备时隐藏div

时间:2018-02-14 08:29:41

标签: javascript jquery

当用户按比例缩小到原始比例时,我需要使用jQuery隐藏div

var zoom = document.documentElement.clientWidth / window.innerWidth;
    $(window).resize(function(){
        var zoomNew = 
         document.documentElement.clientWidth / window.innerWidth;
        if (zoomNew < zoom){
            galleryZoomOut();
        } 

    });

    function galleryZoomOut() {
        $('#gallery_container').hide();
    }

但由于某种原因无效

0 个答案:

没有答案