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.
次のコードを使用して要素の上部までスクロールしていますが、要素の上部から 10 ピクセル上にスクロールしたいのですが、どうすればよいかわかりません。何か提案はありますか? ありがとう!
$('html, body').stop(true,true).animate({ scrollTop: $(".career-overlay").offset().top }, 2000)
このような:
$('html, body').stop(true,true).animate({ scrollTop: $(".career-overlay").offset().top - 10 }, 2000)