消息来时让网页标题闪动

玩过开心网的兄弟们都知道,有未读消息时,网页标题会闪动,突然想用下,投方便,直接把开心网的拉下来,看了下,下面的方式就可以了

当然结合具体的应该还要稍微调整下。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-

transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>我的首页 - 开心网</title>
</head>
</html>
<script>
var g_blinkswitch = 0;
var g_blinktitle = document.title;
function blinkNewMsg()
{

 document.title = g_blinkswitch % 2==0 ? "【   】 - " + g_blinktitle : "【新消息】 - " + g_blinktitle;
 g_blinkswitch++;

}

setInterval(blinkNewMsg, 1000);
</script>

posted @ 2008-12-04 22:43  peace  阅读(726)  评论(3编辑  收藏  举报