5

waypoint('sticky')每当更改导航栏的类时,我想切换另一个元素的类。我试图使用该handler选项触发回调,但它不起作用。我能做什么?

4

1 回答 1

6

出于某种原因,Waypoints 的回调选项是“处理程序”,因此您可以这样做:

$.waypoint('sticky', {
    handler: function(dir) {
        //Do stuff when the user scrolls past this waypoint.
    }
});
于 2013-04-02T23:52:08.743 回答