回答編集履歴
1
コメントを受けて追記
answer
CHANGED
@@ -9,4 +9,19 @@
|
|
9
9
|
height:100vh;
|
10
10
|
overflow-y: scroll;
|
11
11
|
}
|
12
|
+
```
|
13
|
+
|
14
|
+
# コメントを受けて追記
|
15
|
+
|
16
|
+
では、アニメーション処理をやめてみてはいかがでしょうか。
|
17
|
+
|
18
|
+
```js
|
19
|
+
// $("body,main").animate({scrollTop:b_top},500,"swing");
|
20
|
+
$("body,main").scrollTop(b_top);
|
21
|
+
```
|
22
|
+
|
23
|
+
```css
|
24
|
+
*{
|
25
|
+
scroll-behavior: smooth;
|
26
|
+
}
|
12
27
|
```
|