teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

追記

2020/12/10 08:40

投稿

cerfweb
cerfweb

スコア1907

answer CHANGED
@@ -2,9 +2,13 @@
2
2
  ```jQuery
3
3
  $(function(){
4
4
  if (location.hash) {
5
+ setTimeout(function(){
5
- $('html,body').animate({
6
+ $('html,body').animate({
6
- scrollTop: $(location.hash).offset().top
7
+ scrollTop: $(location.hash).offset().top
7
- }, 400, 'swing');
8
+ }, 400, 'swing');
9
+ }, 500);
8
10
  }
9
11
  });
10
- ```
12
+ ```
13
+ 追記:
14
+ setTimeout()を追加しました。