回答編集履歴

1

chousei

2021/07/30 05:39

投稿

yambejp
yambejp

スコア116835

test CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  $(function() {
4
4
 
5
- var hideList = '.title-list li:nth-of-type(n+4)';
5
+ var hideList = '.title-list li:nth-of-type(n+4)';
6
6
 
7
+ var speed=30;//larger the slower
8
+
7
- $(hideList).hide();
9
+ $(hideList).hide();
8
10
 
9
11
  $('.open-btn').on('click', function() {
10
12
 
@@ -14,7 +16,7 @@
14
16
 
15
17
  $(hideList).each(function(num){
16
18
 
17
- $(this).delay(num*30).queue(function(){
19
+ $(this).delay(num*speed).queue(function(){
18
20
 
19
21
  $(this).show().toggleClass('on').dequeue();
20
22