打印

一个有趣的JS

一个有趣的JS

随机效果文本-定时的从一段文本中随机选择一个字符,改变颜色

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<script language="javascript">
<!--
function open () {return true;}
//-->
</script>
<title>ripple text examples by mark boyle email mboil@hotmail.com</title>
</head>

<body bgcolor=green text="white" bgcolor="green" link="yellow" vlink="yellow"  
alink="red">
<font color="yellow">


<script language="javascript">

var speed = 20;
var fulltext;

if(navigator.appname == "netscape")
document.write(<layer id="wds"></layer><br>);
if (navigator.appversion.indexof("msie") != -1)
document.write(<span id="wds"></span><br>);


function livetext()
{
fulltext="this is an example of random effect text"
var whichchar=math.round((math.random()*fulltext.length))
switch(whichchar){
case 0:
fulltext = <font color="red"> + fulltext.substring(0,1) + </font> + fulltext.substring
(1,fulltext.length);
break;
case fulltext.length:
fulltext = fulltext.substring(0,fulltext.length-1) + <font color="red"> + fulltext.substring
(fulltext.length-1,fulltext.length) + </font>;
break;
default:
fulltext =  
fulltext.substring(0,whichchar) + <font color="violet"> +
fulltext.substring(whichchar,whichchar+1) + </font> +
fulltext.substring(whichchar+1,fulltext.length);
break;
}
if(navigator.appname == "netscape") {
size = "<font point-size=25pt>";  
document.wds.document.write(size+<center> + fulltext + </center></font>);
document.wds.document.close();
}
if (navigator.appversion.indexof("msie") != -1){
wds.innerhtml = <center> + fulltext + </center><p>;
wds.style.fontsize=25px
   }

settimeout("livetext()",speed);
}

livetext()

</script>

</font>

</body>
</html>
 

TOP

当前时区 GMT-4, 现在时间是 2008-12-3 18:14
ComePlay8.Com
Powered by Discuz! 6.0.0 © 2001-2007 Comsenz Inc.
Processed in 0.046494 second(s), 10 queries, Gzip enabled
TOP
清除 Cookies - 联系我们 - 来玩吧 - Archiver - WAP
Designed By Discuz! Support Team