一个不错的渐隐文字效果第1/2页
我想实现一个,点一下按钮,text里面的文字渐渐消失,换成别的文字后,又渐渐出现的功能。
主要是这个函数
function chgtext() {
hidetext();
ide++;
document.all.title.value=ide;
showtext();
}
点一下执行一次这个函数,可是实现不了,请大家帮忙改一下,谢谢
无标题文档
var col=153;
function hidetext() {
document.getElementById("title").style.color="rgb(" + col + "," + col + "," + col + ")";
if (col != 0){col -= 1;}
setTimeout('hidetext()', 10);
}
function showtext() {
document.getElementById("title").style.color="rgb(" + col + "," + col + "," + col + ")";
if (col != 153){col += 1;}
setTimeout('showtext()', 10);
}
var ide=0;
function chgtext() {
hidetext();
ide++;
document.all.title.value=ide;
showtext();
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
效果一
无标题文档
var col=255;
var se=1
function chg() {
document.getElementById("title").style.color="rgb(" + col + "," + col + "," + col + ")";
if (col == 0){se = 1;}
else if(col == 255){se = -1;}
col += se;
setTimeout('chg()', 10);
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
效果二:
当前1/2页 12下一页阅读全文