滚动栏中显示Facebook消息中的消息

时间:2012-08-21 17:50:02

标签: jquery html css facebook

是否有可能做出这样的事情: http://img593.imageshack.us/img593/1167/unbenannt1kopiel.png 使用滚动条时,仅显示消息滚动的div中的内容。 有人知道如何在CSS中做到这一点吗?

2 个答案:

答案 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选择器中。