分享一个Javascript函数实现网页标题(title)闪动效果

分类:Javascript| 发布:佚名| 查看: | 发表时间:2014/5/16
代码如下:

<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>无标题文档</title>
</head>
<body>
<script language="JavaScript">
 step=0
 function flash_title()
 {
  step++
  if (step==3) {step=1}        
  if (step==1) {document.title='【你有新的消息】'}
  if (step==2) {document.title='【      】'}
  setTimeout("flash_title()",380);
 }
 flash_title()
</script>
aaaaaaddaaaaaa
</body>
</html>
365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/javascript/1098.html