- Back to Home »
 - Blog »
 - How to make animated title bar on Blog
 
Sunday, January 19, 2014
For Example :
The steps to How to make animated title bar on Blog are :
- Login to your Blogger..
 - Select menu Design- Edit html
 - Find code </head>
 - And copy this code and paste above </head>
 
<script type='text/javascript'>
//<![CDATA[
msg = " animated titlebar";
msg = "How to make animated title bar on Blog" + 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>
5. And the last Save your template.



