回答編集履歴
1
指摘を受けて.stop()追加
test
CHANGED
@@ -14,11 +14,11 @@
|
|
14
14
|
|
15
15
|
if (s_old < s && m <= s) {
|
16
16
|
|
17
|
-
$("#ST-top").delay(1500).fadeIn(1000);
|
17
|
+
$("#ST-top").stop(true, true).delay(1500).fadeIn(1000);
|
18
18
|
|
19
19
|
} else {
|
20
20
|
|
21
|
-
$("#ST-top").hide();
|
21
|
+
$("#ST-top").stop(true, true).hide();
|
22
22
|
|
23
23
|
}
|
24
24
|
|
@@ -29,3 +29,5 @@
|
|
29
29
|
}, 500);
|
30
30
|
|
31
31
|
```
|
32
|
+
|
33
|
+
[https://api.jquery.com/stop/](https://api.jquery.com/stop/)
|