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();
})
})
琥珀君的博客