Waypoint没有处理溢出:隐藏;

小提琴

如果你从小提琴中的.wrapper中删除overflow属性, .wrapper waypoints就可以了。
但不是hiddenxy overflow

这是代码:

HTML:

 
dfa fdasfsdafd as
dfa fdasfsdafd as
dfa fdasfsdafd as
dfa fdasfsdafd as

CSS:

 html, body, .wrapper, .section{ height:100%; } .wrapper{ overflow-x: hidden; overflow-y: auto; } 

JS:

 $('#sec3').waypoint(function(direction) { $('#sec3').css({ backgroundColor: "#f99" }); }); 

任何jQuery或css解决方案?

更新2014-05-16

添加一个waypoint()函数绑定到

id以显示css更改。

waypoint()的上下文应该是你的外部div

DEMO