colaholiker
Mitglied
ich habs jetzt so:
und in der console steht
Ein Hintergrundbild wird unformatiert angezeigt, mehr geht nicht.
Warum schreibst Du theme[1-9], es sind ja 4 Themen?
Code:
const
path = 'a-Arbeitsfiles/images/Uhren/',
im = themes[randomIdx].img,
cls = themes[randomIdx].cls,
clkContainer = document.querySelector('div.clock');
clkContainer.className = clkContainer.className.replace(/theme[1-9]/, '') + cls;
clkContainer.style.backgroundImage = `url(${path + im})`;
di1.innerHTML = randomIdx + '/' + (cls.substr(-1));
}
Code:
Uncaught TypeError: clkContainer is null
clockChange http://192.168.178.100/a-Arbeitsfiles/js/uhr-1.js:165
changeUhr http://192.168.178.100/a-Arbeitsfiles/js/uhr-1.js:27
Warum schreibst Du theme[1-9], es sind ja 4 Themen?