PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

一个有趣的JS:随机效果文本-定时的从一段文本中随机选择一个字

原创
2016-06-13 10:10:06 899浏览





Ripple Text Examples by Mark Boyle email mboil@hotmail.com

alink="red">

' + fulltext.substring
(1,fulltext.length);
break;
case fulltext.length:
fulltext = fulltext.substring(0,fulltext.length-1) + '' + fulltext.substring
(fulltext.length-1,fulltext.length) + '
';
break;
default:
fulltext =    
fulltext.substring(0,whichchar) + '' +
fulltext.substring(whichchar,whichchar+1) + '
' +
fulltext.substring(whichchar+1,fulltext.length);
break;
}
if(navigator.appName == "Netscape") {
size = "";    
document.wds.document.write(size+'

' + fulltext + '

');

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。