Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
看到这张图片,这是我尝试在 JQuery 中使用“Waypoints”类的一个示例。
但这并不顺利。
这是显示我在课堂上尝试过的链接。
http://build-net.co.il/waypoints/
我不确定我是否理解您的要求,但我认为您可以overflow : scroll在左侧 div 上使用具有固定高度的 an 。我修改了您的代码,以便您可以看到它的外观:
overflow : scroll
jsFiddle
但我认为最好的解决方案是摆脱
body { width:100%; height:100%; overflow:hidden; }
使整个主体可滚动,只需将正确的 div 设置为position : fixed:
position : fixed
提琴手
这也将使您的 div 更容易缩放到窗口的大小。
但是由于我不完全知道您为什么需要它,所以我让您根据需要选择最佳解决方案。
希望我对你有所帮助。