http://www.wretch.cc/blog/blue73623
這個部落格的語法
他的標題的文字會動 這怎麼用的??
還有他底下有一些文字『開放右鍵不代表你能手賤』(會動)
這又要怎麼用??
請各位大大教教我吧 ︿ ︿
2007-08-08 11:57:59 · 1 個解答 · 發問者 ? 1 in 電腦與網際網路 ➔ 程式設計
1.
title_tmp1=document.title;
if (title_tmp1.indexOf(">>")!=-1){
title_tmp2=title_tmp1.split(">>");
title_last=" —> "+title_tmp2[1];
title_last=title_last + " —> " + title_tmp2[2];
}else{
if (title_tmp1.indexOf("——")!=-1){
title_tmp2=title_tmp1.split("——");
title_last=" —> "+title_tmp2[1];
if (title_last==" —> "){title_last=" —> "};
if (title_last==" —> "){title_last=" —> "};
}
}
title_new="兔窩教學";
step=0;
function flash_title()
{
step++;
if (step==8) {step=1}
if (step==1) {document.title='ⓡ○○○'+title_new+'○○○ⓡ'}
if (step==2) {document.title='○ⓐ○○'+title_new+'○○ⓐ○'}
if (step==3) {document.title='○○ⓑ○'+title_new+'○ⓑ○○'}
if (step==4) {document.title='○○○ⓑ'+title_new+'ⓑ○○○'}
if (step==5) {document.title='○○ⓘ○'+title_new+'○ⓘ○○'}
if (step==6) {document.title='○ⓣ○○'+title_new+'○○ⓣ○'}
if (step==7) {document.title='●○○○'+title_new+'○○○●'}
setTimeout("flash_title()",500);
}
flash_title();
2.
var msg="開放右鍵不代表你能手賤。";
var interval = 100;
seq = 0;
function Scroll() {
len = msg.length;
window.status = msg.substring(0, seq+1);
seq++;
if ( seq >= len ) { seq = 0 };
window.setTimeout("Scroll();", interval );
}Scroll();
兩者都需要 JavaScript,沒有金卡是很難很難辦到的。
2007-08-08 13:15:48 · answer #1 · answered by mh 7 · 0⤊ 0⤋