gpt4 book ai didi

jquery - 如何使英雄部分始终填满浏览器窗口?

转载 作者:太空宇宙 更新时间:2023-11-03 19:51:28 25 4
gpt4 key购买 nike

我想知道如何将英雄图像填充到浏览器视口(viewport)。这样英雄部分的高度始终是视口(viewport)的高度。

我想出了以下代码,但它不起作用:

function resizer() {
var fulls = $('#hero');
console.log(fulls);
var win = $(window);

resize.on(function() {
fulls.height(win.height());
});
};

最佳答案

简单地说,使用视口(viewport)的宽度和高度:

fulls.style.height = "100vh"; //which means 100% of the viewport height, same works for width

设置视口(viewport)元标记是个好主意:

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

关于jquery - 如何使英雄部分始终填满浏览器窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23225633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com