gpt4 book ai didi

html - 如何实现在其他堆栈社区制作的相同背景图片效果?

转载 作者:行者123 更新时间:2023-11-28 17:26:18 26 4
gpt4 key购买 nike

我在其他堆栈社区看到了那些很酷的背景,比如 World building stack exchange我决定我想做一个这样的。所以首先我尝试检查使用了什么技术,在 Chrome 中打开检查工具以查看堆栈如何实现这一点,我只会更加困惑。起初我真的以为我唯一能做到的就是制作一个 div 并使用 css 添加一个 background-image 属性,仅此而已,但显然这不是它的工作原理。我无法真正注意到仅仅检查元素所使用的技术,因为有很多,我不知所措,感到困惑。

我也试过在背景中拖动一些图片,但是不能,这是为什么?

我想知道 stack 使用的技术来制作这个背景,他们的技术有什么好处?因为我认为这样大小的图像加载时间太长。

还有一个问题

如果你知道其他关于背景中大尺寸图像的技巧/技术,我很想知道它们。

最佳答案

嘿,检查这个 codepen 链接 http://codepen.io/husain100b/pen/GjEGvo?editors=1100我只是尝试创建相同的背景。我希望它能帮助您更好地理解这种方式。

另请参阅下面的完整代码:

  body {
background: url('http://cdn.sstatic.net/Sites/worldbuilding/img/figures.png?v=9929c8f67b27') no-repeat,url('http://cdn.sstatic.net/Sites/worldbuilding/img/bg-body-texture.png?v=1076ddfe073d') repeat,url('http://cdn.sstatic.net/Sites/worldbuilding/img/bg-land.svg?v=dfaf33c88b06') no-repeat;
background-position: left 500px, center, center, center 204px;
background-size: 20%, auto, 100%;
background-attachment:scroll;
}

.container {
background: url(http://cdn.sstatic.net/Sites/worldbuilding/img/rift-top.svg?v=11805d608ac1),url(http://cdn.sstatic.net/Sites/worldbuilding/img/bg-header.jpg?v=88701e2ba1ac),url(http://cdn.sstatic.net/Sites/worldbuilding/img/bg-header-tile.png?v=128b1e116433);
background-repeat: no-repeat,no-repeat,repeat-x;
background-position: center bottom,center top,center top;
background-size: 103%,2000px,auto;
min-height: 900px;
}

#footer {
background: #182332;
background: url('http://cdn.sstatic.net/Sites/worldbuilding/img/rift-bottom.svg?v=4d5835e6daff') center top no-repeat,url('http://cdn.sstatic.net/Sites/worldbuilding/img/bg-footer-grid.png?v=830466e4b56d') center bottom repeat-x,url('http://cdn.sstatic.net/Sites/worldbuilding/img/bg-stars.png?v=e6409fe22c58') center bottom repeat-x,linear-gradient(135deg, #182332 0, #235843 100%);
background-size: 103%,auto,auto;
background-attachment: scroll,scroll,scroll;
min-height: 580px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>worldbuilding.stackexchange.com - Background</title>

</head>
<body>
<div class="container"></div>
<div id="footer"></div>
</body>
</html>

关于html - 如何实现在其他堆栈社区制作的相同背景图片效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39751521/

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