Window status bar animation (IE)
|
|
<html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- var msg = "Thanks for visiting our Web site! ... "; function scrollMsg() { window.status = msg; msg = msg.substring(1,msg.length) + msg.substring(0,1); setTimeout("scrollMsg()",150); } // --> </script> </head> <body onload="scrollMsg()">
</body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
|