Textillate是一款基於jquery的使用CSS3實現文字動畫的小巧插件。Textillate.js集成了一些很棒的使用CSS3動畫效果的 JavaScript 庫,您可很是輕輕鬆地把這些動畫效果應該於網頁中的任何文字。php
引入核心文件css
<link href="assets/animate.css" rel="stylesheet"> <script src="http://libs.useso.com/js/jquery/1.9.0/jquery.min.js"></script> <script src="assets/jquery.lettering.js"></script>
構建html標籤html
<h1 class="tlt">My Title</h1>
寫入JS,初始化jquery
$(function () { $('.tlt').textillate(); })
以上代碼使用了默認的動畫效果,若是你想改變更理效果,能夠在html中調用data APIapi
<h1 class="tlt" data-in-effect="rollIn">Title</h1>
你也能夠在初始化時使用參數來改變app
$('.tlt').textillate({ in: { effect: 'rollIn' } });
固然,你也能夠用Textillate給一個列表的文字都具備動畫dom
<h1 class="tlt"> <ul class="texts"> <li data-out-effect="fadeOut" data-out-shuffle="true">Some Title</li> <li data-in-effect="fadeIn">Another Title</li> </ul> </h1> $('.tlt').textillate();
注意:你能夠經過調用data api配置動畫參數來控制每一個li的動畫效果。oop
$('.tlt').textillate({ // the default selector to use when detecting multiple texts to animate selector: '.texts', // enable looping loop: false, // sets the minimum display time for each text before it is replaced minDisplayTime: 2000, // sets the initial delay before starting the animation // (note that depending on the in effect you may need to manually apply // visibility: hidden to the element before running this plugin) initialDelay: 0, // set whether or not to automatically start animating autoStart: true, // custom set of 'in' effects. This effects whether or not the // character is shown/hidden before or after an animation inEffects: [], // custom set of 'out' effects outEffects: [ 'hinge' ], // in animation settings in: { // set the effect name effect: 'fadeInLeftBig', // set the delay factor applied to each consecutive character delayScale: 1.5, // set the delay between each character delay: 50, // set to true to animate all the characters at the same time sync: false, // randomize the character sequence // (note that shuffle doesn't make sense with sync = true) shuffle: false, // reverse the character sequence // (note that reverse doesn't make sense with sync = true) reverse: false, // callback that executes once the animation has finished callback: function () {} }, // out animation settings. out: { effect: 'hinge', delayScale: 1.5, delay: 50, sync: false, shuffle: false, reverse: false, callback: function () {} }, // callback that executes once textillate has finished callback: function () {}});