Как правильно сделать смену изображений по дням? Нужно чтобы каждую субботу было новое изображение...
const pictures = [
{ src: 'src1', delay: 604800000 },
{ src: 'src2', delay: 604800000 },
{ src: 'src3', delay: 604800000 },
{ src: 'src4', delay: 604800000 },
]
let current = 0;
function nextImage () {
var img = new Image;
img.src = pictures[current].src;
img.onload = function () {
document.getElementsByClassName("").style.backgroundImage = 'url(' + pictures[current].src + ')';
current++;
if (current >= pictures.length) current = 0;
setTimeout(nextImage, pictures[current].delay);
}
}
nextImage();