Announcement


Grab your free HTML codes here! Everything from basic music HTML codes, cool font codes, even free cursor codes! You can copy/paste these codes straight into your web page, and in most cases, your MySpace page. Best Use fresh Javascript source code into your web pages easy. Get scripts and apply to your page. Learn to copy and paste Java code, source code. In free-webcodes, you will find a categorized listing of free php scripts, commercial php scripts, php resource, php tutorials, web resources, php hosting and more. We have also developed several free php scripts at free-webcodes.blogspot. You can find them in the label section to the right. The code is downloadable from php.net too.

Dancing status bar with nice slide

Labels: |

<!--Dancing status bar sliding nicely -->
<!--   DESCRIPTIONS:  This will make your text bounce in the status bar of the browser.

    INSTRUCTIONS:  Place this script in the HEAD tags of your webpage.  Then place the text you want to be bounced in the area that says,
                      "FILL YOUR MESSAGE HERE".

    FUNCTIONALITY: Works only in both Netscape & IE.
-->

<SCRIPT LANGUAGE="JavaScript">
//Modified by CoffeeCup Software
//This code is Copyright (c) 1997 CoffeeCup Software
//all rights reserved. License is granted to a single user to
//reuse this code on a personal or business Web Site.



var yourtext = "* FILL 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()">

0 comments: