質問編集履歴
1
括弧の数、間違っていました。整合ミスです。失礼いたしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -82,13 +82,13 @@
|
|
82
82
|
|
83
83
|
```javascript
|
84
84
|
|
85
|
-
const bgMain = document.querySelectorAll("bg-main");
|
85
|
+
const bgMain = document.querySelectorAll(".bg-main");
|
86
|
+
|
87
|
+
let current = 0;
|
86
88
|
|
87
89
|
|
88
90
|
|
89
91
|
function slideshow() {
|
90
|
-
|
91
|
-
let current = 0;
|
92
92
|
|
93
93
|
if (current === 4) {
|
94
94
|
|
@@ -110,6 +110,4 @@
|
|
110
110
|
|
111
111
|
setInterval(slideshow, 4000);
|
112
112
|
|
113
|
-
}
|
114
|
-
|
115
113
|
```
|