MARATHI TEAM
Welcome on the Marathi Team Forum.
To take full advantage of everything offered by
our forum, please log in if you are already a
member or join our community if you're not
yet....


Join the forum, it's quick and easy

MARATHI TEAM
Welcome on the Marathi Team Forum.
To take full advantage of everything offered by
our forum, please log in if you are already a
member or join our community if you're not
yet....
MARATHI TEAM
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Log in

I forgot my password

Latest topics
Top posting users this week
No user

Nimbuzz id Maker
freebuzz is my love :D

user name

password

captcha


Dancing status bar sliding nicely

Go down

Heart Dancing status bar sliding nicely

Post  storm Thu Dec 13, 2012 2:37 am

Here is a sample code to show how to have a status bar which is so hyper. You could change the text in it to whatever you actually want and it will slide all over from right to left and left to right of status bar.


Code:
<!-- This Script is from www.htmlfreecodes.com, Coded by: Krishna Eydat-->

<SCRIPT LANGUAGE="JavaScript">

var yourtext = "* YOUR MESSAGE HERE! *";
var wedge1="                        ";
var wedge2="                        ";
var message1=wedge1+yourtext+wedge2;
var dir = "lside";
var speed = 50;

function bouncey() {

   if (dir == "lside") {
      message2=message1.substring(2,message1.length)+"  ";
      window.status=message2;
      setTimeout("bouncey();",speed);
      message1=message2;

      if (message1.substring(0,1) == "*") {
         dir="rside";
      }
   }

   else {
      message2="  "+message1.substring(0,message1.length-2);
      window.status=message2;
      setTimeout("bouncey();",speed);
      message1=message2;
      if (message1.substring(message1.length-1,message1.length) == "*") {
         dir="lside";
      }
   }
}

// -- End Hiding Here -->
</SCRIPT>

<body onLoad="bouncey()">

<font face="Tahoma"><a target="_blank" href="http://www.htmlfreecodes.com/"><span style="font-size: 8pt; text-decoration: none">HTML Free Code</span></a></font>
storm
storm
Member
Member

Posts : 155
Points : 458
Reputation : 1
Join date : 2012-12-05

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum