textillate.js
是将一个控件中的文本一个一个拆分开,然后逐个应用动画显示的库。
textillate.js
官网:http://textillate.js.org
textillate.js
在GitHub上的网址:https://github.com/jschr/textillate
textillate.js
依赖lettering.js
和animate.css
两个库。
1、通过bower下载:
bower install textillate --save
2、引入:
<link rel="stylesheet" href="/bower_components/animate.css/animate.min.css">
<script type="text/javascript" src="/bower_components/jquery/jquery.min.js"></script>
<script type="text/javascript" src="/bower_components/textillate/jquery.lettering.min.js"></script>
<script type="text/javascript" src="/bower_components/textillate/jquery.textillate.min.js"></script>
<link rel="stylesheet" href="https://cdn.bootcss.com/animate.css/3.5.2/animate.min.css">
<script type="text/javascript" src="https://cdn.bootcss.com/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.bootcss.com/lettering.js/0.7.0/jquery.lettering.min.js"></script>
<script type="text/javascript" src="https://cdn.bootcss.com/textillate/0.4.0/jquery.textillate.min.js"></script>
$('p').textillate({
initialDelay: 500, //设置动画开始时间
in: {
delay: 100, //设置每个字符之间显示时间间隔
effect: 'flipInX' //设置动画名称
}
});