怎样编写IE和NN6通用的闪烁(blank)效果
作者:http://lucky.myrice.com
E-mail:amxh@21cn.com
根据Nascape 6的开发者称:在以后的版本里,将废除
function blink (elId) {
var html = '';
if (document.all)
html += 'var el = document.all.' + elId + ';';
else if (document.getElementById)
html += 'var el = document.getElementById("' + elId + '");';
html +=
'el.style.visibility = ' +
'el.style.visibility == "hidden" ? "visible" : "hidden"';
if (document.all || document.getElementById)
setInterval(html, 500)
}
function init () {
blink('aText');
blink('a2ndText');
}
这行文字闪烁!!!
文字闪烁例子!!!
这行文字闪烁!!!
查看更多内容,请访问,可以看到变色的闪烁!
http://elove.heha.net
http://lucky.myrice.com

