content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
AutoType
本人才疏学浅,总觉得自己写的方法比较简陋,于是搜索了一波资料,发现有个不错的jQuery插件Typed.js。
Type.js的基础使用
...
插件为用户定制了许多默认设置与效果
$(function(){
$(".element").typed({
strings: ["First sentence.",// Optionally use an HTML element to grab strings from (must wrap each string in a
)
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() {}
});
});
具体用法可以看看GitHub地址,带注释的源码400多行,不算复杂。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持编程之家!
总结
以上是编程之家为你收集整理的js实现键盘自动打字效果全部内容,希望文章能够帮你解决js实现键盘自动打字效果所遇到的程序开发问题。
如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。
本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
小编个人微信号 jb51ccc
喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!