Home  >  Article  >  Web Front-end  >  Using javascript to implement "flash" title bar_Typical special effects

Using javascript to implement "flash" title bar_Typical special effects

PHP中文网
PHP中文网Original
2016-05-16 19:18:151166browse
Use javascript to implement "flash" title bar_typical special effects
<script language="JavaScript"> 
<!-- 
var tx = new Array ( 
"您好呀,欢迎您的光临^_^", 
"知道吗?我就是标题栏", 
"呵呵,现在我也~会闪啦", 
"看啊,我闪~我闪……", 
"快快把你的眉眼抛过来呀!嘻嘻……"); 
//设置好你的页面标题栏中要闪烁的5句文本(具体内容自己据需而定吧你) 
var txcount=5; 
//数字"5"对应于上边设定的文本数 
var i=1; 
var wo=0; 
var ud=1; 
//定义i、wo、ud三者的初值 
function animatetitle() 
{ 
window.document.title=tx[wo].substr(0, i)+"_"; 
if (ud==0) i--; 
if (ud==1) i++; 
if (i==-1) {ud=1;i=0;wo++;wo=wo%txcount;} 
if (i==tx[wo].length+10) {ud=0;i=tx[wo].length;} 
// if (window.document.title.length < 20 ) window.document.title=window.document.title+"-"; 
// if (window.document.title.length == 20 ) window.document.title=window.document.title+"]"; 
// if (window.document.title.length == 21 ) setTimeout("window.document.title=&#39;Animierte Seitentitel &#39;; ",1000); 

parent.window.document.title=tx[wo].substr(0, i)+"_"; 
setTimeout("animatetitle()",100); //数字"100"指每一字符闪烁速度为100毫秒,其改大(小)就闪的慢(快),可自行设置数值 
} 
//以上几行是对标题栏(title)的function为animatetitle的控制过程 
animatetitle(); 
//标题栏(title)中运行animatetitle 
// --> 
</script>

The above is the content of using javascript to implement "flash" title bar_typical special effects. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn