質問編集履歴

3

if(c -- length)をif(c == length)に変更後、prevをc++;からc--;に変更しました。

2020/10/31 01:32

投稿

You
You

スコア52

test CHANGED
File without changes
test CHANGED
@@ -312,7 +312,7 @@
312
312
 
313
313
 
314
314
 
315
- if(c -- length){
315
+ if(c == length){
316
316
 
317
317
 
318
318
 
@@ -324,6 +324,32 @@
324
324
 
325
325
  },time);
326
326
 
327
+ c--;
328
+
329
+ }
330
+
331
+
332
+
333
+ });
334
+
335
+
336
+
337
+ next.click(function(){
338
+
339
+
340
+
341
+ if(c == length){
342
+
343
+
344
+
345
+ } else {
346
+
347
+ carouselinner.stop().animate({
348
+
349
+ left: c * carouselWidth
350
+
351
+ },time);
352
+
327
353
  c++;
328
354
 
329
355
  }
@@ -332,32 +358,6 @@
332
358
 
333
359
  });
334
360
 
335
-
336
-
337
- next.click(function(){
338
-
339
-
340
-
341
- if(c -- length){
342
-
343
-
344
-
345
- } else {
346
-
347
- carouselinner.stop().animate({
348
-
349
- left: c * carouselWidth
350
-
351
- },time);
352
-
353
- c++;
354
-
355
- }
356
-
357
-
358
-
359
- });
360
-
361
361
  ```
362
362
 
363
363
  ### 試したこと

2

if(c == length)をif(c -- length)に変更しました。

2020/10/31 01:32

投稿

You
You

スコア52

test CHANGED
File without changes
test CHANGED
@@ -312,7 +312,7 @@
312
312
 
313
313
 
314
314
 
315
- if(c == length){
315
+ if(c -- length){
316
316
 
317
317
 
318
318
 
@@ -338,7 +338,7 @@
338
338
 
339
339
 
340
340
 
341
- if(c == length){
341
+ if(c -- length){
342
342
 
343
343
 
344
344
 

1

let d = 1;の削除を行いました。

2020/10/30 15:43

投稿

You
You

スコア52

test CHANGED
File without changes
test CHANGED
@@ -306,8 +306,6 @@
306
306
 
307
307
  let c = 1;
308
308
 
309
- let d = 1;
310
-
311
309
 
312
310
 
313
311
  prev.click(function(){
@@ -340,7 +338,7 @@
340
338
 
341
339
 
342
340
 
343
- if(d == length){
341
+ if(c == length){
344
342
 
345
343
 
346
344
 
@@ -348,11 +346,11 @@
348
346
 
349
347
  carouselinner.stop().animate({
350
348
 
351
- left: d * carouselWidth
349
+ left: c * carouselWidth
352
350
 
353
351
  },time);
354
352
 
355
- d++;
353
+ c++;
356
354
 
357
355
  }
358
356