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.
私がやろうとしていることは非常に単純ですが、それを行う方法が見つかりません (そして検索しました!)
ページが読み込まれると、ページがページclass=""内の要素にスクロールするようにします。多くのプラグインがあることを確認しました。次のようなことを試しました。
class=""
$('html, body').animate({ scrollTop: $(".class").offset().top }, 2000);
しかし、それは機能しません:(
このようにしてみてください:
$(document).ready(function () { // Handler for .ready() called. $('html, body').animate({ scrollTop: $('#what').offset().top }, 'slow'); });
フィドルのデモ