标签: jquery css
我在页面上有一个元素,当页面向下滚动并在元素上方时,它希望在窗口底部可见。当页面向上滚动时,它将返回原始位置。有关于jquery和css的任何建议吗?
答案 0 :(得分:1)
你基本上有两个选择。 position:fixed;,或者在您的网页内容wrapper周围height: 100%;和overflow: scroll;,然后您将position: relative;设置为两个元素和一个更大的z-index您想要在页面上方显示的元素的值。
position:fixed;
wrapper
height: 100%;
overflow: scroll;
position: relative;
z-index