Show DevBest [Release] Moving text in title Bar [Release]

Cronus

Cerberus Founder/Developer
Jul 19, 2013
449
25
Hello,

I am not sure if this is posted here or not but here it is:

P.S: my Friend Cody made it:



Code:
    <script type='text/javascript'>
// Scrolling Title Script made by CodyLeeK; [email protected] \\
msg = "Text";
msg = "More Text" + msg;pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
if (pos > msg.length) pos = 0
window.setTimeout("scrollMSG()",200);
}
scrollMSG();
//]]>
</script>
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
This is kinda nice, I don't see why you would want moving text in the title? But I guess some people will.

Anyway, if you struggle using this script, check out this generator:

 

Users who are viewing this thread

Top