当前位置:开发者网络 >> 网页特效 >> 状态栏类 >> 内容
精彩推荐
分类最新特效
分类热点特效
  
标题栏闪烁效果
日期:2005-06-15   人气:   【字体: 】【收藏此文


<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! -->
<!-- 要实现此效果需要 1 个步骤: -->

<!-- 第 1 步: -->
<!-- 把下面的代码加到<BODY></BODY>区域中: -->

<script language="JavaScript">
step=0
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title='☆★网络编程站★☆ —— www.1stscript.com'}
if (step==2) {document.title='★☆网络编程站☆★ —— www.1stscript.com'}
setTimeout("flash_title()",380);
}
flash_title()
</script>