|
Hiya,
OP, thanks for coming in on this, the function is on load regulated by interval3 below...
[CODE]
function ol(){
interval = setInterval(twicely,1000);
time = setTimeout('realTime()',500);
interval2 = setInterval(lingo,5000);
interval3 = setInterval(rotateCell,2000);
}
[CODE]
So at this point every two seconds is fine and I can adjust to suit depending on how the effect looks when it runs. This way works quite well with the other functions but I was wondering if it would be two seconds between rotation of the text or is it two seconds between each execution of rotateCell()?
The idea being that every two seconds it should rotate, text1, text2, text3. In the HTML, text 4 (the table data itself) is a duplication of text 1 so reverting back to the original table data is not needed. All the action for this occurs in td 24, so I need to identify that cell too, thats why I started and finished my original for loop at 24 instead of delayed.length, I'm assuming that would work however I'm still learning and could be waaaaay off.
The page itself doesn't consist of any user interaction so display only. I hope thats a bit clearer.
Jazzo, on your code the first line consists of (td),i,delayedTitle; sorry to appear a bit dumb but the comma's are confusing me, is that the the right syntax?
Thanks again guys, appreciate the help!
PeteW
Last edited by PeteWild; 02-10-2010 at 11:34 AM..
|