js实现键盘自动打字效果
程序员文章站
2022-09-27 17:32:55
最近在网上看到一个字符逐个出现的打字效果,觉得挺有趣的,想一想基本实现思路就是设置一个定时器逐然后逐个向容器中添加字符,于是就基于jquery写了一个简单版的。...
最近在网上看到一个字符逐个出现的打字效果,觉得挺有趣的,想一想基本实现思路就是设置一个定时器逐然后逐个向容器中添加字符,于是就基于jquery写了一个简单版的。
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>autotype</title> </head> <body> <div id="autotype"></div> <script src="//cdn.bootcss.com/jquery/1.9.1/jquery.min.js"></script> <script> $.fn.autotype = function (str, speed) { var self = this, defaultstr = '<p>我希望有个如你一般的人.</p><br>' +'<p>如山间清爽的风.</p><br>' +'<p>如古城温暖的光.</p><br>' +'<p>从清晨到夜晚.</p><br>' +'<p>由山野到书房.</p><br>' +'<p>只要最后是你,就好.</p><br>',//将要添加的元素的默认内容 defaultspeed = 100, str = str || defaultstr, speed = speed || defaultspeed, index = 0, timer = setinterval(function () { var current = str.substr(index, 1); if (current == '<') { index = str.indexof('>', index) + 1; } else { index++; } self.html(str.substring(0, index) + ( (index & 1) && (index != str.length) ? '_' : '')); if (index >= str.length) { clearinterval(timer); } }, speed); }; $("#autotype").autotype(); </script> </body> </html>
本人才疏学浅,总觉得自己写的方法比较简陋,于是搜索了一波资料,发现有个不错的jquery插件typed.js。
type.js的基础使用
<script src="jquery.js"></script> <script src="typed.js"></script> <script> $(function(){ $(".element").typed({ strings: ["first sentence.", "second sentence."], typespeed: 0 }); }); </script> ... <span class="element"></span>
插件为用户定制了许多默认设置与效果
<script> $(function(){ $(".element").typed({ strings: ["first sentence.", "second sentence."], // optionally use an html element to grab strings from (must wrap each string in a <p>) stringselement: null, // typing speed typespeed: 0, // time before typing starts startdelay: 0, // backspacing speed backspeed: 0, // shuffle the strings shuffle: false, // time before backspacing backdelay: 500, // loop loop: false, // false = infinite loopcount: false, // show cursor showcursor: true, // character for cursor cursorchar: "|", // attribute to type (null == text) attr: null, // either html or text contenttype: 'html', // call when done callback function callback: function() {}, // starting callback function before each string prestringtyped: function() {}, //callback for every typed string onstringtyped: function() {}, // callback for reset resetcallback: function() {} }); }); </script>
具体用法可以看看github地址,带注释的源码400多行,不算复杂。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!