jQuery ウェイポイント関数を使用して関数を切り替えたいのですが、これらのコードをどのように組み合わせて実現できますか? (代替ソリューションにも満足しています)。
これを組み合わせたい……。
$('#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