以下を見ると、オフセット -185 にいくつかのクラスを追加しています。下にスクロールすると、2 つのクラスがアニメーション化/フェードインされます。オフセットを超えて上にスクロールしたときにバーをフェードアウトさせたいのですが、これを達成するのに苦労しています。jQuery ウェイポイント スクリプトを使用していますhttp://imakewebthings.com/jquery-waypoints/
$('#wrapper').waypoint(function(event, direction) {
$('#scroll-action').toggleClass('hidden', direction === "up");
}, {
offset: -185
}).find('#scroll-action').waypoint(function(event, direction) {
$('#scroll-action').removeClass('hidden');
$(this).parent().toggleClass('sticky', direction === "down");
$('#scroll-action').addClass('animated fadeIn');
event.stopPropagation();
}, {
offset: -185
});