是否有可能做出这样的事情: 使用滚动条时,仅显示消息滚动的div中的内容。 有人知道如何在CSS中做到这一点吗?
答案 0 :(得分:1)
当然你可以用纯粹的CSS来做到这一点; position property,不需要jQuery。
在您不想滚动的元素上使用css position:fixed;
,并在要滚动的内容区域上使用css值float:left;
或position:relative;
。
但是如果你想根据scroll.top
值粘贴一些元素,你需要使用jQuery。我建议您检查一下这些答案:How to build simple sticky navigation at the page bottum?和Setting CSS value limits of the window scrolling animation
答案 1 :(得分:0)
是的,这很有可能。对于不应滚动的对象,请指定:
position: fixed;
在其CSS选择器中。