右側のメニューを作成しましたが、スクロールしてアクティブなクラスを次のメニューに変更していないときにこのコードを使用しましたが、私はあなたのコードでvar scrollLink = $('.myanimate');
が欠けていると思うが、結果をスクロールではアクティブなメニューがチェーニングされません
$(window).scroll(function() {
var scrollbarLocation = $(this).scrollTop();
scrollLink.each(function() {
var sectionOffset = $(this.hash).offset().top - 70;
if (sectionOffset <= scrollbarLocation) {
$('.icons').removeClass('iconactive');
$(this).children('.icons').addClass('iconactive');
}
});
});
はありがとうございましたが、右の丸いメニューにic lcikがスクロール効果を与えないでそのセクションにジャンプしています – Tanmay