當前位置:開發者網絡 >> 網頁特效 >> 狀態欄類 >> 內容
精彩推薦
分類最新特效
分類熱點特效
   
讓你的標題欄文字動起來
日期:2004-06-17   人氣:   【字體: 】【收藏此文


<!-- 網頁特效代碼由[中國WEB開發者網絡:http://www.ChinaWebDev.com]提供! -->
<!-- 要實現此效果需要 1 個步驟: -->

<!-- 第 1 步: -->
<!-- 把下面的代碼加到<HEAD></HEAD>區域中: -->

<script language="javascript">
<!-- Hide me
var index_count = 0;
var title_string = "讓你的標題欄文字動起來,標題也動了,真有趣=====讓你的標題欄文字動起來,標題也動了,真有趣-->webasp.net";
var title_length = title_string.length;
var cmon;
var kill_length = 0;
function loopTheScroll()
{
scrollTheTitle();
if(kill_length > title_length)
{
clearTimeout(cmon);
}

kill_length++;
cmon = setTimeout("loopTheScroll();",100)
}

function scrollTheTitle()
{
var doc_title = title_string.substring((title_length - index_count - 1),title_length);
document.title = doc_title;

index_count++;
}


loopTheScroll();

//-->
</script>