gpt4 book ai didi

jquery - 如何在固定位置的页面顶部显示一个div?

转载 作者:行者123 更新时间:2023-11-28 03:52:16 25 4
gpt4 key购买 nike

我在保留我的 Loaded-Content 时遇到了一些问题图像在一个位置:固定。

My Container 通过单击按钮加载隐藏的内容,加载的内容应从右向左滑动。它应该始终位于顶部。

加载内容<div class="sticky">cat image</div>应始终固定在顶部。任何帮助将不胜感激。

<html>
<div class="container">many photos</div>
<button>LOADED-CONTENT comes in transform(translateX(0%)</button>
</html>

<html>
sticky image always on top.
<button>back button slides the loaded content transform(translateX(100%)</button>
</html>

http://jsfiddle.net/6kpnN/

最佳答案

添加 CSS 并指定 div 类始终位于顶部

<style>
.sticky
{
position: fixed;
top : 0px;
left : 0px;
width : (specify) ;
height : (specity here);
}
</style>

关于jquery - 如何在固定位置的页面顶部显示一个div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23057312/

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