It is very easy to making . First of all, you must go to admin panel>>apperance>>widgets . And then you must take one text widget and copy following codes . After you must paste in the text widget . after save and then reload you blog page and you will see your address bar is moving . you can replace some text what you like at the msg=”blackeagles”; . checking red color words .
NOTE : I got this codes from www.javascriptfreecode.com .
<SCRIPT language=javascript>
msg = “blackeagles”;
msg = “…” + 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>
NOTE : I got this codes from www.javascriptfreecode.com .
<SCRIPT language=javascript>
msg = “blackeagles”;
msg = “…” + 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>
No comments:
Post a Comment