Может кто-нибудь сказать мне, почему следующий код может не циклически проходить через массив цветов, определенный здесь:
var colors = ["white", "yellow", "orange", "red"];
и вот строка кода, о которой идет речь:
setInterval(function(){
currElm.style.background = colors[(nextColor++)%(colors.length)]);
}, 500);
Кажется, это должно сработать, и я видел несколько примеров, когда код, подобный этому, вызывал эффект циклического изменения цвета. Кто-нибудь видит проблему с кодом выше (или ниже)?
Вся функция (работа в процессе):
function setHighlight(elmId, index, songLength){
//alert("called set highlight, params are " + elmId + " " + index + " " + songLength);
var colors = ["white", "yellow", "orange", "red"];
var nextColor = 0;
if(index < 10)
index = "000" + (index);
else if (index < 100)
index = "000" + (index);
else if(index < 1000)
index = "0" + (index);
if(index >= 1000)
index = index;
//alert("called set highlight, params are " + elmId + " " + index + " " + songLength);
//this will be useful for finding the element but pulsate will not work, need to research animations in javascript
var mainElm = document.getElementById('active_playlist');
var elmIndex = "";
for(var currElm = mainElm.firstChild; currElm !== null; currElm = currElm.nextSibling){
if(currElm.nodeType === 1){
var elementId = currElm.getAttribute("id");
if(elementId.match(/\b\d{4}/)){
elmIndex = elementId.substr(0,4);
alert(currElm.getAttribute('id'));
if(elmIndex == index){
setInterval(function(){
currElm.style.background = colors[(nextColor++)%(colors.length)]);
}, 500);
}
}
}
}//end for
}
Вся помощь очень ценится. Спасибо