当前位置: 技术问答>java相关
谁帮我解释解释?
来源: 互联网 发布时间:2017-04-20
本文导语: 特效 var thissize=20; var textfont="隶书"; var textcolor= new Array(); textcolor[0]="000000"; textcolor[1]="000000"; textcolor[2]="000000"; textcolor[3]="111111"; textcolor[4]="222222"; textcolor[5]="333333"; textcolor[6]="444444"; textcolor[7]="555555"; te...
特效
var thissize=20;
var textfont="隶书";
var textcolor= new Array();
textcolor[0]="000000";
textcolor[1]="000000";
textcolor[2]="000000";
textcolor[3]="111111";
textcolor[4]="222222";
textcolor[5]="333333";
textcolor[6]="444444";
textcolor[7]="555555";
textcolor[8]="666666";
textcolor[9]="777777";
textcolor[10]="888888";
textcolor[11]="999999";
textcolor[12]="aaaaaa";
textcolor[13]="bbbbbb";
textcolor[14]="cccccc";
textcolor[15]="dddddd";
textcolor[16]="eeeeee";
textcolor[17]="ffffff";
textcolor[18]="ffffff";
var message = new Array();
message[0]="http://yuxuemei.yeah.net";
message[1]="这是文字特效";
message[2]="大家好";
message[3]="欢迎参观我的主页";
i_message=0;
var i_strength=0;
var i_message=0;
var timer;
function glowtext() {
if(document.all) {
if (i_strength =0) {
glowdiv.innerText=message[i_message];
document.all.glowdiv.style.filter="glow(color="+textcolor[i_strength]+", strength=4)";
i_strength--;
timer=setTimeout("deglowtext()",100);
}
else {
clearTimeout(timer);
i_message++;
if (i_message>=message.length) {i_message=0}
i_strength=0;
intermezzo();
}
}
}
function intermezzo() {
glowdiv.innerText="" ;
setTimeout("glowtext()",1500) ;
}
onLoad 是什么意思?
glowdiv.innerText=message[i_message]; innerText 是什么意思?
document.all.glowdiv.style.filter="glow(color="+textcolor[i_strength]+", strength=4)"; 这句是作什么的?filter 什么意思?
clearTimeout(timer); 什么意思?
if(document.all) 这句起什么作用,拿掉行不?
|
onLoad:页面加载的同时,执行这个函数
innerText:包含在标记中间的文本内容
filter:我没用过,我帮你查查看.
clearTimeout(timer): 把计时器timer清空.
if(document.all):判断页面上是否有控件生成.不能去掉.
innerText:包含在标记中间的文本内容
filter:我没用过,我帮你查查看.
clearTimeout(timer): 把计时器timer清空.
if(document.all):判断页面上是否有控件生成.不能去掉.
|
onLoad --进入页面时首先调用onLoad指定的方法。
glowdiv.innerText=message[i_message]; innerText--块内容
document.all.glowdiv.style.filter="glow(color="+textcolor[i_strength]+", strength=4)"; filter--"faint的意思"然后去msdn查
clearTimeout(timer); --你不能看一看setTimeout是什么意思吗?
if(document.all) --判断document.all(页面所有控件),一般指定到具体控件进行判断。
glowdiv.innerText=message[i_message]; innerText--块内容
document.all.glowdiv.style.filter="glow(color="+textcolor[i_strength]+", strength=4)"; filter--"faint的意思"然后去msdn查
clearTimeout(timer); --你不能看一看setTimeout是什么意思吗?
if(document.all) --判断document.all(页面所有控件),一般指定到具体控件进行判断。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。