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

In - Chữ nhấp nháy trên thanh trạng thái - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh trạng thái » Chữ nhấp nháy trên thanh trạng thái
URL: https://www.javascriptbank.com/flashing-text-in-status-bar.html

Chữ nhấp nháy trên thanh trạng thái © JavaScriptBank.comHiệu ứng làm cho dòng chữ do bạn qui định có thể chớp tắt nhấp nháy liên tục trên thanh trạng thái của trình duyệt.

Phiên bản đầy đủ: jsB@nk » Tiêu đề » Thanh trạng thái » Chữ nhấp nháy trên thanh trạng thái
URL: https://www.javascriptbank.com/flashing-text-in-status-bar.html



JavaScript
<script language="JavaScript"><!--/* MjM'S JAVA CODENAME = FLASH   This JavaScript Code was written by MjM for Hyperchat UK   I am not responsible for any damage caused by my code.   This code can be modified as long as the Author's Name is still attached.   Email : MjM@hyperchat.co.uk   © Copyright 1996*/var yourwords = "JavaScriptBank.com - Bank of over 2000+ free JavaScripts";var speed = 150;var control = 1;function flash(){  if (control == 1)    {      window.status=yourwords;      control=0;    }    else    {      window.status="";      control=1;    }  setTimeout("flash();",speed);}// --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="flash();"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->