Breaking

Thursday, December 6, 2012

hiệu ứng chữ trên Tab trình duyệt


Cách 1: chữ chạy
<script type="text/javascript">
//<![CDATA[
var yourtitle="Chào bạn !";
var velocity=155;
var laptitle=null;
function rotulo_title()
{
document.title=yourtitle;
yourtitle=yourtitle.substring(1,yourtitle.length)+yourtitle.charAt(0);
laptitle=setTimeout("rotulo_title()",velocity);
}
rotulo_title();
//]]>
</script>
Cách 2: chữ luân chuyển, thay đổi nội dung

<script type='text/javascript'>
//<![CDATA[
step=0
function title(){
step++
if (step==6) {step=1}
if (step==1) {document.title='dòng 1'}
if (step==2) {document.title='dòng 2'}
if (step==3) {document.title='dòng 3'}
if (step==4) {document.title='dòng 4'}
if (step==5) {document.title='dòng 5'}
setTimeout("title()",555);}
title()
//]]>
</script>

No comments:

Post a Comment