Im trying to make a slider that changes images every 5 secondes.
(我正在尝试制作一个每5秒更改一次图像的滑块。)
But in console it says "changemementImages is not defined at new slider"(但是在控制台中它说“ changemementImages未在新滑块上定义”)
//change images every 5 sec this.temps = setInterval(changemementImages, 5000); this.image5Sec = changemementImages =()=>{ if(this.i >= 2){ this.i-=3; document.getElementById("images").src = this.slide[this.i]; } else if (this.i = 0){ document.getElementById("images").src = this.slide[++this.i]; } }
ask by Gobi translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…