gpt4 book ai didi

javascript - HTML 中的可滚动堆叠图像

转载 作者:行者123 更新时间:2023-11-28 08:23:36 25 4
gpt4 key购买 nike

我正在尝试在页面中制作堆叠图像,但我需要带有图像的页面才能滚动,因此 position:fixed; 无法正常工作。

我试过了,但它使图像固定在屏幕上,而不是#content div。

<div id="content"><!--I made this scrollable in css-->
<!--other content here-->
<div id="imageStack">
<img id="map" src="bg.png" style="position:fixed;x:0;y:0" /><!--this line and the next will be added in JS-->
<img id="map" src="top.png" style="position:fixed;x:8;y:6" />
</div>
<!--other content here-->
</div>

是否可以在不使用 Canvas 的情况下使图像堆叠和**滚动*?

最佳答案

添加以下CSS

#imageStack {
position: relative;
}

img {
position: absolute;
}

img:nth-child(1) {
top: 0;
left: 0;
}

img:nth-child(2) {
top: 6px;
left: 8px;
}


.... etc

它们将相对于 imageStack 元素显示

关于javascript - HTML 中的可滚动堆叠图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28636593/

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