คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #3 : code:ข้อความstatus bar
<SCRIPT>
<!-- Hide from old browsers
message = "ยิ น ดี ต้ อ น รับ เ ข้ า สู่^"+
"d i a r y ข อ ง M i n n i e m a r t^"+
"เ ข้ า ม า ก็ เ ม้ น ใ ห้ กั น มั้ ง น ะ^" +
"อ่ ะ . . . ไ ม่ อ ย า ก เ ม้ น ใ ห้ เ ห ร อ^" +
"ก็ ไ ด้ . . . ค น ใ จ ร้าย^" +
"จำ ไ ว้ เ ลย . . . เ ช อ ะ^"+
"ไ ป แ ล ะ น ะ^"
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>
ความคิดเห็น