这是下载地址,希望各位大大能帮忙一下小弟
http://pan.baidu.com/s/1eQnlxIi
回复讨论(解决方案)
Js实现逐字在网页上打印文字
text = "Js实现逐字在网页上打印文字";
i = 0;
function type(){
str = text.substr(0,i);
txt.innerHTML = str + "_";
i++;
if (i>text.length){
i=0;
//return 加入则text显示完后,停止。
}
setTimeout("type()",300);
}
//-->
查看更多关于关于span样式中慢慢浮现的CSS_html/css_WEB-ITnose的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did108877