gpt4 book ai didi

jquery - 背景尺寸:封面;属性(property)

转载 作者:太空宇宙 更新时间:2023-11-04 02:17:34 26 4
gpt4 key购买 nike

每当背景图像发生变化时,我都需要它来覆盖主体。我正在使用 background-size: cover,但它似乎不起作用。

body {
position: relative;
margin-top: 60px;
background-color: #000;
font-family: 'Roboto Slab', serif;
background: url(https://i.ytimg.com/vi/lECC6eQhnZo/maxresdefault.jpg);
background-repeat: no-repeat;
background-position: center center;
background-atachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
transition: background 1s;

这是更改图像的 jQuery:

$("body").css("background", objects[newNum].img);

图像存储在数组(对象)中。

代码笔:http://codepen.io/Chantun/pen/WxXaGy?editors=0010

最佳答案

背景封面是正确的工作。默认高度:自动。使用 min-height: 100vh 作为主体。并将 margin-top 更改为 padding-top。

body {
min-height: 100vh;
padding-top: 60px;
}

Codepen

关于jquery - 背景尺寸:封面;属性(property),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38658543/

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