質問編集履歴

2

誤字の修正

2021/05/04 09:44

投稿

You
You

スコア52

test CHANGED
File without changes
test CHANGED
@@ -444,7 +444,7 @@
444
444
 
445
445
  }, 1000);
446
446
 
447
- setTimeout(() => {q
447
+ setTimeout(() => {
448
448
 
449
449
  // for (i = 0; i < fluffy.length; i++) {
450
450
 

1

文法の修正と問題点の見直し。

2021/05/04 09:44

投稿

You
You

スコア52

test CHANGED
File without changes
test CHANGED
@@ -423,3 +423,37 @@
423
423
 
424
424
 
425
425
  [for文](https://stackoverflow.com/questions/27056169/display-elements-in-order-of-click)を活用して取得したfluffyクラスを分離させ、各々にsetTimeoutを用いた。
426
+
427
+
428
+
429
+
430
+
431
+ ```js
432
+
433
+ //for文を挟まないと二つ目のsetTimeoutが発火しない。
434
+
435
+ function showFn() {
436
+
437
+ setTimeout(() => {
438
+
439
+ // for (i = 0; i < fluffy.length; i++) {
440
+
441
+ fluffy[0].classList.add('show');
442
+
443
+ // }
444
+
445
+ }, 1000);
446
+
447
+ setTimeout(() => {q
448
+
449
+ // for (i = 0; i < fluffy.length; i++) {
450
+
451
+ fluffy[1].classList.add('show');
452
+
453
+ // }
454
+
455
+ }, 2000);
456
+
457
+ };
458
+
459
+ ```