Я хочу изменить некоторые стили моей переменной «текста», но каким -то образом не может. < /p>
const bg = document.querySelector(".bg");
const text = document.querySelector('.loading-text');
let count = 0;
let interval = setInterval(blurr,30);
function blurr() {
if(count>99) {
clearInterval(interval);
}
text.innerHTML = `${count}%`;
text.style //here is the problem
count++;
};
Подробнее здесь: https://stackoverflow.com/questions/751 ... properties