H5_0024:对于事先无法确定css大小的情况,可以通过JS动态修改

        $(function(){
            function Heights(){
                var WinH = $(window).height();
                $('.img3').height(WinH * 0.5);
      $('.img3').height($('.img3').width() * 1.8);

            }
            Heights();

            $(window).resize(function(){
                Heights();
            })
        })
posted @ 2019-08-23 20:11  琥珀君  阅读(168)  评论(0编辑  收藏  举报