jquery文字動畫特效外掛分享animatext.js文件

佀無極發表於2018-09-27

animatext.js文件

animatext是一款簡單的jquery文字動畫特效外掛。通過該jquery文字動畫外掛,你可以在顯示一串文字時,新增多種炫酷的動畫效果。

使用方法
在頁面中引入jquery和animatext.min.js檔案,如果需要額外的動畫效果,可以新增animate.min.css動畫庫。
<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>

初始化外掛
在頁面DOM元素載入完畢之後,可以通過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() {}
});

animatext jquery文字動畫特效外掛的github地址為:https://github.com/oscarlijo/animatext
示例地址:http://www.oscarlijo.com/animatext/


相關文章