jquery文字动画特效插件animatext
源码介绍
animatext是一款简单的jquery文字动画特效插件。通过该jquery文字动画插件,你可以在显示一串文字时,添加多种炫酷的动画效果。 可以通过npm或bower来安装animatext jquery文字动画插件。 在页面中引入jquery和animatext.min.js文件,如果需要额外的动画效果,可以添加animate.min.css动画库。 你可以为任意标题文字,段落文字添加文字动画特效。例如: 在页面DOM元素加载完毕之后,可以通过 文字的显示分为单词和字母两种模式: 可以通过 可以通过 可以通过 你还可以通过 可以通过 最后,还有两个可用的回调函数。 animatext jquery文字动画特效插件的github地址为:https://github.com/oscarlijo/animatext简要教程
安装
npm install animatext
bower install animatext
使用方法
<link rel="stylesheet" href="css/animate.min.css" type="text/css" />
<script src="path/to/jquery.min.js"></script>
<script src="path/to/animatext.min.js"></script>
HTML结构
<h3 class="demo">青春,人生当中最美好的时光,不知不觉就会逝去,正因如此,我们才更加感怀青春。</h3>
初始化插件
animatext()
方法来初始化该jquery文字动画特效插件。
$(".demo").animatext();
配置参数
// 字母模式
$(".demo").animatext({
mode: "chars"
});
// 单词模式
$(".demo").animatext({
mode: "words"
});
reverse
参数设置反向显示。
$(".demo").animatext({
reverse: true
});
infinite
参数设置无限循环显示。
$(".demo").animatext({
infinite: true
});
speed
参数设置文字动画的速度。
$(".demo").animatext({
speed: 150
});
group
参数来对文字进行分组。
$(".demo").animatext({
group: true
});
random
参数来设置随机显示文字。
$(".demo").animatext({
random: true
});
initDelay
参数用于设置显示文字的延迟时间。
$(".demo").animatext({
initDelay: 0
});
timeToRelaunch
参数用于设置两次循环文字动画之间的延迟时间。
$(".demo").animatext({
timeToRelaunch: 2000
});
$(".demo").animatext({
onBegin: function() {},
onSuccess: function() {}
});
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » jquery文字动画特效插件animatext
发表评论 取消回复