[範例]在標題欄上做點小花樣

Home Home
引用 | 編輯 mjmjmj
2004-10-25 23:01
樓主
推文 x0
<HEAD>
<SCRIPT>

//Arrow Head title
//Script by Jason Rex (wonil4@hotmail.com, http://www.syred.net)

//change title text to your own
var titletext="網頁標題置於此"
var thetext=""
var started=false
var step=0
var times=1

function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
document.title = titletext;
setTimeout("anim()",1);
}
thetext = titletext;
}
}

function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}

function anim()
{
step++
if (step==7) {step=1}
if (step==1) {document.title='>=='+thetext+'===<'}
if (step==2) {document.title='=>=='+thetext+'==<='}
if (step==3) {document.title='>=>='+thetext+'=<=<'}
if (step==4) {document.title='=>=>'+thetext+'<=<='}
if (step==5) {document.title='==>='+thetext+'=<=='}
if (step==6) {document.title='===>'+thetext+'<==='}
setTimeout("anim()",200);
}

if (document.title)
window.onload=onload=welcometext
</SCRIPT>
</HEAD>

獻花 x0
引用 | 編輯 mjmjmj
2004-10-26 21:22
1樓
  
該不會都偷偷學 都沒謝謝低 一一"

獻花 x0