我想使用 jQuery waypoint 函数来切换函数,我怎样才能结合这些代码来实现呢?(我也会对替代解决方案感到满意)。
我想把这个结合起来......
$('#pageborder').waypoint(function(direction) {
//do something here
}, { offset: 'bottom-in-view' });
有了这个......
.toggle(function(){
$('.play', this).removeClass('pausing');
$('.play', this).addClass('playing');
}, function(){
$('.play', this).addClass('pausing');
$('.play', this).removeClass('playing');
});
最终结果应该是在到达路径点时切换功能。
有关 JQuery Waypoint 插件的更多信息:http: //imakewebthings.com/jquery-waypoints/#doc-waypoint