Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のコードは次のとおりです。
$('html, body').stop().animate({scrollTop : $('#current').offset().top}, 300, easeInOutExpo);
それは、項目 (#current) をウィンドウの一番上までスクロールすることです。アイテムを上から -100px 下 にスクロールしたい。 どうすればそれを達成できますか?助けてください。ありがとう。
これを試して :
$('html, body').stop().animate({ scrollTop: $('#current').offset().top - 100 }, 300, easeInOutExpo);
要素の現在の上部を取得し、#currentその値からさらに 100 ピクセルを取得します -#current要素をウィンドウの上部から100 ピクセルのままにします
#current