質問編集履歴

1

誤字

2020/12/16 09:49

投稿

makken
makken

スコア0

test CHANGED
File without changes
test CHANGED
@@ -9,8 +9,6 @@
9
9
  swiper.js中のDEMOにあったサムネイル付きスライドショーを応用しloopさせているのですが、画面内の最後の画像に行き次のloopで、その画像が初期値(左側から)から始まってしまいます。
10
10
 
11
11
  実現したいことは前述の通りですが、詳しく述べると最後の画像まで行くと、次の隠れている画像にいくために一個づつloopさせたいということになります。
12
-
13
- あともうひと
14
12
 
15
13
 
16
14
 
@@ -36,7 +34,67 @@
36
34
 
37
35
  ```
38
36
 
37
+ let galleryThumbs = new Swiper('.gallery-thumbs', {
39
38
 
39
+ spaceBetween: 0,
40
+
41
+ slidesPerView: 5,
42
+
43
+ loop: true,
44
+
45
+ freeMode: true,
46
+
47
+ autoplay: {
48
+
49
+ delay : 6000,
50
+
51
+ disableOnInteraction: true
52
+
53
+ },
54
+
55
+ speed : 900,
56
+
57
+ followFinger : false,
58
+
59
+ loopedSlides: 5, //looped slides should be the same
60
+
61
+ watchSlidesVisibility: true,
62
+
63
+ watchSlidesProgress: true,
64
+
65
+ grabCursor : true,
66
+
67
+ });
68
+
69
+ let galleryTop = new Swiper('.gallery-top', {
70
+
71
+ spaceBetween: 0,
72
+
73
+ loop: true,
74
+
75
+ autoplay: {
76
+
77
+ delay : 6000,
78
+
79
+ disableOnInteraction: false
80
+
81
+ },
82
+
83
+ speed : 900,
84
+
85
+ followFinger : false,
86
+
87
+ touchRatio : 2,
88
+
89
+ loopedSlides: 5, //looped slides should be the same
90
+
91
+ thumbs: {
92
+
93
+ swiper: galleryThumbs,
94
+
95
+ },
96
+
97
+ });
40
98
 
41
99
  ### 試したこと
42
100