Custom Headers For Websites

wizeman

Banned
Messages
256
Reaction score
0
Points
0
This is an increasingly popular effect if implemented correctly. This tutorials will show you the code if you want a scrolling mesage(s)
Place this script in the HEAD section of your page.


<!--Place this script in the HEAD section. Thank you from us at and1balla.s5.com

<script language="JavaScript" type="text/javascript">
<!--
//Visit and1balla.s5.com for this scripts and more

// You may edit the message below.

var startMsg = "www.and1balla.s5.com- world domination is only inevitable ";

var str = "";
var msg = "";
var leftMsg = "";


function setMessage()
{
if (msg == "")
{
str = " ";
msg = startMsg;
leftMsg = "";
}

if (str.length == 1)
{
while (msg.substring(0, 1) == " ")
{
leftMsg = leftMsg + str;
str = msg.substring(0, 1);
msg = msg.substring(1, msg.length);
}

leftMsg = leftMsg + str;
str = msg.substring(0, 1);
msg = msg.substring(1, msg.length);

for (var ii = 0; ii < 120; ii++)
{
str = " " + str;
}
}
else
str = str.substring(10, str.length);

window.status = leftMsg + str;
// This editable value (1000 = 1 second)
// corresponds to the speed of the shooting
// message.
timeout = window.setTimeout('setMessage()',100);

}
// -->
</script>

<!--Update the BODY tag for the timer function.-->

<!-- You may edit the BODY color. -->
<BODY bgcolor="ffffff" onload="timeout = window.setTimeout('setMessage()',500);">

The things you need to customize are labelled. Place this script in the HEAD section.
 
Top