回答編集履歴

1

追記

2020/12/10 08:40

投稿

cerfweb
cerfweb

スコア1907

test CHANGED
@@ -6,14 +6,22 @@
6
6
 
7
7
  if (location.hash) {
8
8
 
9
- $('html,body').animate({
9
+ setTimeout(function(){
10
10
 
11
- scrollTop: $(location.hash).offset().top
11
+ $('html,body').animate({
12
12
 
13
+ scrollTop: $(location.hash).offset().top
14
+
13
- }, 400, 'swing');
15
+ }, 400, 'swing');
16
+
17
+ }, 500);
14
18
 
15
19
  }
16
20
 
17
21
  });
18
22
 
19
23
  ```
24
+
25
+ 追記:
26
+
27
+ setTimeout()を追加しました。