码迷,mamicode.com
首页 > 其他好文 > 详细

动态文字提示一个字一个字蹦出来的 循环执行

时间:2017-01-01 15:30:42      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:har   function   clear   lib   art   htm   time   min   text   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
<style>
.main {
width: 100%;
height: 100%;
margin: 0 auto;
max-width:480px;
margin-top:40px;
}
.menutext{
width:480px;
height:50px;
font-size:20px;
line-height:50px;}
</style>
</head>
<body>
<div class="main">
          <div class="menutext"></div>   
</div>
<script>
//动态文字提示一个字一个字蹦出来的 循环执行
var txtArr = [‘请输入您的问题......‘],
x = 1,
y = 0,
txt = txtArr[y],
timer = null,
timer1 = null,
cue = $(‘.menutext‘);
function changTxt() {
if (x == txt.length+1) {
clearTimeout(timer1);
timer1 = setInterval(function(){
y += 1;
if (y > txtArr.length - 1) y = 0;
cue.text(‘‘);
txt = txtArr[y];
x=0;
},3000);
}
cue.text(txt.substring(0,x));
x+=1;
clearTimeout(timer);
timer = setTimeout(function(){
changTxt();
},600);
}
changTxt();
</script>
</body>
</html>

动态文字提示一个字一个字蹦出来的 循环执行

标签:har   function   clear   lib   art   htm   time   min   text   

原文地址:http://www.cnblogs.com/bkysgj/p/6241004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!