Sometimes, your webpage title is too long to display completely on the browser title bar. Or simply that you want your webpage title to be highlight to everyone. Scrolling page title on browser bar is a good choice. Let's make some javascript!
[html]
<!-- Scroll title function -->
<script language='JavaScript'>
var scroll_title = document.title;
function scrlsts() {
scroll_title = scroll_title.substring(1, scroll_title.length) + scroll_title.substring(0, 1);
document.title = scroll_title;
setTimeout('scrlsts();', 300);
};
</script>
[/html]
[html]<body onLoad='scrlsts();'>[/html]
That's all. Let's try it!
Wish succeed!
- Open your webpage html template, add below codes below <title></title> tag:
[html]
<!-- Scroll title function -->
<script language='JavaScript'>
var scroll_title = document.title;
function scrlsts() {
scroll_title = scroll_title.substring(1, scroll_title.length) + scroll_title.substring(0, 1);
document.title = scroll_title;
setTimeout('scrlsts();', 300);
};
</script>
[/html]
- Run function on webpage body loading with this code:
[html]<body onLoad='scrlsts();'>[/html]
That's all. Let's try it!
Wish succeed!
Comments
Post a Comment