js 定时器打字动画
Posted qimiaojiyi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 定时器打字动画相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
background-color: skyblue;
}
#box {
/* width: 600px; */
height: 200px;
line-height: 200px;
background-color: #fff;
margin: 200px auto;
text-align: center;
font-size: 40px;
}
</style>
<!-- <script src=‘http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js‘></script> -->
</head>
<body>
<div id="box">
想明白生命的意义吗?想真正的……活着吗!
</div>
</body>
<script>
var box = document.getElementById(‘box‘);
var box2 = box.innerText.split(‘‘);
box.innerText = ‘‘;
var i = 0;
var start = setInterval(function() {
if (i < box2.length) {
box.innerText += box2[i];
i++;
} else {
clearInterval(start);
}
},
500)
// }
</script>
</html>
以上是关于js 定时器打字动画的主要内容,如果未能解决你的问题,请参考以下文章