標題欄打字效果_JS特效源碼

最新標題欄打字效果_JS特效源碼

以下是三零網爲大家整理的最新標題欄打字效果_JS特效源碼的文章,希望大家能夠喜歡!


<script language="JavaScript1.2">
var message="歡迎光臨 "       //修改顯示內容
var message=message+" "
i="0"
var temptitle=""
var speed="300"
function titler(){
if (!document.all&&!document.getElementById)
return
document.title=temptitle+message.charAt(i)
temptitle=temptitle+message.charAt(i)
i++
if(i==message.length)
{
i="0"
temptitle=""
}
setTimeout("titler()",speed)
}
window.onload=titler
</script>


轉載來自:http://www.q3060.com/list3/list115/319.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章