最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
基于jQuery实现的打字机效果
时间:2022-06-25 17:20:54 编辑:袖梨 来源:一聚教程网
话不多说,请看实例代码:
代码如下 | 复制代码 |
一场雨把我困在这里
你温柔的表情
会让我伤心
六月的雨,只是无情的你~ $.fn.autotype = function(){ var $text = $(this); console.log('this',this); var str = $text.html();//返回被选 元素的内容 var index = 0; var x = $text.html(''); //$text.html()和$(this).html('')有区别 var timer = setInterval(function(){ //substr(index, 1) 方法在字符串中抽取从index下标开始的一个的字符 var current = str.substr(index, 1); if(current == '<'){ //indexOf() 方法返回">"在字符串中首次出现的位置。 index = str.indexOf('>', index) + 1; }else{ index ++ ; } //console.log(["0到index下标下的字符",str.substring(0, index)],["符号",index & 1 ? '_': '']); //substring() 方法用于提取字符串中介于两个指定下标之间的字符 $text.html(str.substring(0, index) + (index & 1 ? '_': '')); if(index >= str.length){ clearInterval(timer); } },100); }; $("#autotype").autotype(); |
相关文章
- 远光84步枪怎么选 步枪选择推荐 08-13
- 远光84桃桃怎么玩 桃桃技能玩法教学 08-13
- 星痕共鸣怎么漂浮 漂浮操作方法 08-13
- 绝区零爱丽丝什么时候出 爱丽丝卡池时间一览 08-13
- 原神6.0新角色立绘 6.0新角色爆料介绍 08-13
- 七日世界自动拾取怎么设置 自动拾取开启方法 08-13