当前位置:首页- Js、css代码 - 经典动态网站网页标题特效代码

经典动态网站网页标题特效代码

2016-3-8 作者:大资源外挂网  分类: Js、css代码    阅读:3146

<script language="JavaScript">
step=0
function flash_title()
    {
      step++
      if (step==3) {step=1}
      if (step==1) {document.title='您有新短消息 www.cwhkw.com'}
      if (step==2) {document.title='请留意查收 !百度一下:小超资源网'.}
      setTimeout("flash_title()",800);
    }
flash_title()
</script>