闪烁的网页标题与网页图标

来源:互联网 发布:淘宝客佣金是什么 编辑:程序博客网 时间:2024/04/30 05:53

<link rel="SHORTCUT ICON" href="/ecdomain/ecplatform/common/icon/msnms.ico" />/

 

<script language="javascript">
 
 var animateFlag = 0;
   
 function animateTitle(){
   if(animateFlag == 0)
     window.parent.window.document.title="闪烁标题";
   if(animateFlag == 1)
     window.parent.window.document.title=" 烁标题";
   if(animateFlag == 2)
     window.parent.window.document.title="闪 标题";
   if(animateFlag == 3)
     window.parent.window.document.title="闪烁 题";
   if(animateFlag == 4){
     window.parent.window.document.title="闪烁标 ";
     animateFlag = -1;
   }
   animateFlag += 1;
   setTimeout("animateTitle()",100);
   }
  
   animateTitle(); 
<script>