메시지가 나온 후 다음 메시지가 나옵니다.
<scRIPT> <!-- message = "첫 번째^" + "두 번째^" + "세 번째^" + "네 번째^" scrollSpeed = 25 //속도 lineDelay = 1500 //정지 시간 txt = "" function scrollText(pos) { if (message.charAt(pos) != '^') { txt = txt + message.charAt(pos) status = txt pauze = scrollSpeed } else { pauze = lineDelay txt = "" if (pos == message.length-1) pos = -1 } pos++ setTimeout("scrollText('"+pos+"')",pauze) } // Unhide --> scrollText(0) </scRIPT> |