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.
这是这个线程的续集。
在我为客户构建的网站的一页上,整页导航和滚动溢出/slimscroll 都可以正常工作。
在另一页上,整页导航有效,但溢出不滚动。看起来像类的两个 div.slimScrollDiv并且.scrollable没有按预期创建。这是jsfiddle;设置scrollOverflow为true但第二部分的溢出不会滚动。
.slimScrollDiv
.scrollable
scrollOverflow
true
$.fn.fullpage({ scrollOverflow: true });
你遇到了麻烦,因为.infotext包装你的表的类是用position:absolute. 这样插件无法检测部分内容的高度,因此我没有意识到它必须创建滚动条。
.infotext
position:absolute
改用position:relative,问题就解决了:
position:relative
现场演示
使用绝对定位元素没有多大意义,因为它将与部分相关,就好像您使用的是相对定位元素一样。