»
Tiếng AnhTiếng PhápTiếng Việt

In - Tiêu đề cuộn - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh tiêu đề » Tiêu đề cuộn
URL: https://www.javascriptbank.com/scroller-title-script.html

Tiêu đề cuộn © JavaScriptBank.comHiệu ứng làm cho chữ di chuyển từ phải sang trái trên thanh tiêu đề. Hiệu ứng rất thích hợp với những trang web có tiêu đề dài.

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh tiêu đề » Tiêu đề cuộn
URL: https://www.javascriptbank.com/scroller-title-script.html



JavaScript
<script> var repeat=1 var title=document.title var leng=title.length var start=1 function titlemove() {   titl=title.substring(start, leng) + title.substring(0, start)   document.title=titl   start++   if (start==leng+1) {     start=0     if (repeat==0)     return   }   setTimeout("titlemove()",140) } if (document.title) titlemove() </script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->