首页 > 代码库 > 打字机 时间随机效果
打字机 时间随机效果
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
window.onload=function()
{
var oBtn=document.getElementById(‘btn‘);
var oBox=document.getElementById(‘box‘);
var oTex=document.getElementById(‘tex‘);
oBtn.onclick=function()
{
var value=http://www.mamicode.com/oTex.value;
if(!value)
{
alert(‘请输入内容‘);
return;
};
var n=0;
setTimeout(f,rnd(60,500));
function f(){
n++;
oBox.innerHTML= value.substring(0,n)+‘<span>_</span>‘;
if(n==value.length)
{
oBox.innerHTML= value.substring(0,n);
alert(‘关‘);
}
else
{
setTimeout(f,rnd(60,500));
};
};
};
};
function rnd(n,m)
{
return parseInt(Math.random()*(m-n+1)+n);
};
</script>
</head>
<body>
<input type="button" value="http://www.mamicode.com/aa" id="btn">
<textarea id="tex"></textarea>
<div id="box" style="width:500px;border:1px solid #000;height:500px;"></div>
</body>
</html>
打字机 时间随机效果