回答編集履歴

1

コード修正

2020/01/29 08:03

投稿

x_x
x_x

スコア13749

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  function slideshow_timer() {
6
6
 
7
- num = ++num % img_src.length;
7
+ num = (num + 1) % img_src.length;
8
8
 
9
9
  $('#slide img').fadeOut().promise().done(function() { $(this).remove(); });
10
10