闪动的标题栏特效 - 中国WEB开发者网络 (http://www.webasp.net) -- 网页特效 (http://www.webasp.net/javascript/) --- 闪动的标题栏特效 (http://www.webasp.net/javascript/1/186.htm) |
| -- 发布日期: 2004-06-17 |
| <!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! --> <!-- 要实现此效果需要 1 个步骤: --> <!-- 第 1 步: --> <!-- 把下面的代码加到<HEAD></HEAD>区域中: --> <script language=javascript > 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=" —> "}; } else { title_last="==>http://www.webasp.net"} } title_new="中国WEB开发者网络"+title_last+"" step=0 function flash_title() { step++ if (step==7) {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+'◇◇◆◇'} setTimeout("flash_title()",180); } flash_title() </script> |
| webasp.net |