当前位置:K88软件开发文章中心电脑基础基础应用12 → 文章内容

JavaScript教程之创建“闪动”标题栏

减小字体 增大字体 作者:华军  来源:华军资讯  发布时间:2019-2-1 22:16:14

 JavaScript教程之创建“闪动”标题栏  方法:只须在你主页面HTML的加入如下一段JavaScript代码即可!再说一句废话:这可不是恶意代码啊!^*^  <script language="JavaScript"><BR><!--<BR>var tx = new Array (<BR>"您好呀,欢迎您的光临^_^",<BR>"知道吗?我就是标题栏",<BR>"呵呵,现在我也~会闪啦",<BR>"看啊,我闪~我闪……",<BR>"快快把你的眉眼抛过来呀!嘻嘻……");<BR>//设置好你的页面标题栏中要闪烁的5句文本(具体内容自己据需而定吧你)<BR>var txcount=5;<BR>//数字“5”对应于上边设定的文本数<BR>var i=1;<BR>var wo=0;<BR>var ud=1;<BR>//定义i、wo、ud三者的初值<BR>function animatetitle()<BR>{<BR>window.document.title=tx[wo].substr(0, i)+"_";<BR>if (ud==0) i--;<BR>if (ud==1) i++;<BR>if (i==-1) {ud=1;i=0;wo++;wo=wo%txcount;}<BR>if (i==tx[wo].length+10) {ud=0;i=tx[wo].length;}<BR>// if (window.document.title.length < 20 ) window.document.title=window.document.title+"-";<BR>// if (window.document.title.length == 20 ) window.document.title=window.document.title+"]";<BR>// if (window.document.title.length == 21 ) setTimeout("window.document.title=´Animierte Seitentitel ´; ",1000);<BR><BR>parent.window.document.title=tx[wo].substr(0, i)+"_";<BR>setTimeout("animatetitle()",100); //数字“100”指每一字符闪烁速度为100毫秒,其改大(小)就闪的慢(快),可自行设置数值<BR>}<BR>//以上几行是对标题栏(title)的function为animatetitle的控制过程<BR>animatetitle();<BR>//标题栏(title)中运行animatetitle<BR>// --><BR></script>

JavaScript教程之创建“闪动”标题栏