textillate.js
1.1、textillate.js简介

textillate.js是将一个控件中的文本一个一个拆分开,然后逐个应用动画显示的库。

textillate.js官网:http://textillate.js.org

textillate.jsGitHub上的网址:https://github.com/jschr/textillate

textillate.js依赖lettering.jsanimate.css两个库。

1.2、引入textillate.js
1.2.1、通过下载到本地引入textillate.js

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>
1.2.2、通过CDN引入textillate.js
<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>
1.3、使用textillate.js
$('p').textillate({
    initialDelay: 500, 	//设置动画开始时间
    in: {
        delay: 100,       //设置每个字符之间显示时间间隔
        effect: 'flipInX' //设置动画名称
    }
});