Hola Italico76. Gracias por tu respuesta.
El asunto es que en este caso hay diferentes textos rotando en el mismo párrafo. En mi caso es diferente lo que requiero.
Tengo unas 12 areas diferentes, y en cada una de ellas requiero que se roten dos textos.
¿ Si me explico ?
Seria algo como esto pero al correrlo no me funciona.
Código Java:
Ver originalvar rotatingTextElement;
var rotatingText
= new Array(); var ctr = 0;
function initRotateText() {
rotatingTextElement = document.getElementById("textToChange");
rotatingText[0] = rotatingTextElement.innerHTML;
rotatingText[1] = "no";
setInterval(rotateText, 3000);
}
function rotateText() {
ctr++;
if(ctr >= rotatingText.length) {
ctr = 0;
}
rotatingTextElement.innerHTML = rotatingText[ctr];
}
window.onload = initRotateText;
var rotatingTextElement;
var rotatingText
= new Array(); var ctr = 0;
function initRotateText() {
rotatingTextElement = document.getElementById("textToChange2");
rotatingText[0] = rotatingTextElement.innerHTML;
rotatingText[1] = "no";
setInterval(rotateText, 3000);
}
function rotateText() {
ctr++;
if(ctr >= rotatingText.length) {
ctr = 0;
}
rotatingTextElement.innerHTML = rotatingText[ctr];
}
window.onload = initRotateText;
var rotatingTextElement;
var rotatingText
= new Array(); var ctr = 0;
function initRotateText() {
rotatingTextElement = document.getElementById("textToChange3");
rotatingText[0] = rotatingTextElement.innerHTML;
rotatingText[1] = "no";
setInterval(rotateText, 3000);
}
function rotateText() {
ctr++;
if(ctr >= rotatingText.length) {
ctr = 0;
}
rotatingTextElement.innerHTML = rotatingText[ctr];
}
window.onload = initRotateText;