ภาษาไทย
<!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs--> <!-- 完整的HTML代码 --> 我们使用时可以调整left的值和两个变量:pausebetweenmsg和glidespeed的值 <head> <style type="text/css"> .glidetext{ ตำแหน่ง: สัมพันธ์; /*กำหนดตำแหน่งเริ่มต้นของข้อความของคุณ ทำให้เพียงพอที่จะซ่อนข้อความจากมุมมอง:*/ ซ้าย: -500px; } </style> <script type="text/javascript"> //สคริปต์ข้อความแบบบินต่อเนื่องโดย JavaScriptKit.com //สำหรับสคริปต์นี้และอีกกว่า 400 รายการ โปรดไปที่ http://www.javascriptkit.com // ประกาศนี้จะต้องไม่เสียหายสำหรับการใช้งาน var Pausebetweenmsg=10 //ปรับแต่งการหยุดชั่วคราวเป็นมิลลิวินาทีระหว่างแต่ละข้อความที่แสดง (3000=3 วินาที) var glidespeed=50 //ปรับแต่งความเร็วการเลื่อนเป็นพิกเซลต่อเฟรม var curobjindex=0 ฟังก์ชั่น realstyle(el, cssproperty){ if (el.currentStyle) return el.currentStyle[cssproperty] else if (window.getComputedStyle){ var elstyle=window.getComputedStyle(el, "") return elstyle.getPropertyValue( cssproperty) } } ฟังก์ชั่น collectElementbyClass(){ var classname="glidetext" glidearray=new Array() var inc=0 var alltags=document.all? document.all : document.getElementsByTagName("*") สำหรับ (i=0; i<alltags.length; i++){ if (alltags[i].className==classname) glidearray[inc++]=alltags[i] } ถ้า (glidearray.length>0) onebyoneglide() } function onebyoneglide(){ if (curobjindex<glidearray.length) glidetimer=setInterval("glideroutine()",50) } function glideoutine(){ if (parseInt(actualstyle(glidearray[ curobjindex], "ซ้าย"))<0) glidearray[curobjindex].style.left=parseInt(actualstyle(glidearray[curobjindex], "left"))+50 อื่น ๆ{ glidearray[curobjindex].style.left=0 curobjindex++ clearInterval (glidetimer) setTimeout("onebyoneglide()", Pausebetweenmsg) } } if (window.addEventListener) window.addEventListener("load", collectElementbyClass, false) else if (window.attachEvent) window.attachEvent("onload", collectElementbyClass) อื่นถ้า (document.getElementById) window.onload=collectElementbyClass </script> </head> <body> <div class="glidetext">นี่คือข้อความ 1</div> <p class="glidetext">ข้อความอื่น ( หรือรูปภาพ) <img src="/img/200406301.jpg"></p> <div class="glidetext">นี่คือข้อความ 3</div> <div class="glidetext">นี่คือข้อความ 4</ div> </body> <br><br><br> <p><font color=red>//网站:http://www.downcodes.com</font></p>