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();
            })
        })

猜你喜欢

转载自www.cnblogs.com/eliteboy/p/11402356.html
今日推荐