我不再工作,如果我调整窗口大小,但在移动设备上它可以正常工作。
<script>
var clientHeight = $( window ).height();
$('.container-bigpic').css('height', clientHeight);
</script>
如果我添加这个:
}).on("resize", function(){ // If the user resizes the window
winH = $(this).height(); // you'll need the new height value
});
它不再适用于移动设备,但如果我调整浏览器窗口大小,它将适合100vh。