写javascript / jquery的新手。
我正在使用视频/ gif scrubber(https://github.com/ghepting/javascript-video-scrubber),我希望它能够连续循环背景图片gif。是否有一种简单的方法可以使for循环重置,所以当它到达最后一个图像时它会回到第一个图像?
for(i = 0; i < totalFrames; i++) { // loop for each image in sequence
images[i] = new Image(); // add image object to array
images[i].src = "./frames/frame_"+pad(i, 2)+"_delay-0.04s.gif"; // set the source of the image object
}