您的位置:首页 > Web前端 > JavaScript

黄聪:标题闪烁实现JS代码,论坛标题栏闪烁效果

2011-09-05 22:14 513 查看
<SCRIPT language=JavaScript type=text/JavaScript>
var step=0,_admin=true; // 后台输出是否有新信息数据
var _title=document.title;
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='    '+_title}
if (step==2) {document.title='新信息 '+_title}
setTimeout("flash_title()",500);
}
if (_admin){flash_title()}
</SCRIPT>


// var step=0,_admin=true; // 后台输出是否有新信息数据
var _title=document.title;
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='    '+_title}
if (step==2) {document.title='新信息 '+_title}
setTimeout("flash_title()",500);
}
if (_admin){flash_title()}
// ]]>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: