首页 > 其他分享 >textillate-jQuery和css3文字动画特效库

textillate-jQuery和css3文字动画特效库

时间:2024-12-10 16:11:45浏览次数:4  
标签:textillate jQuery set tlt 动画 js css3 out

textillate.js是一款效果炫酷的jQuery和css3文字动画特效库插件。它通过结合其它一些动画库来制作各种CSS3文字动画特效。

在线演示 下载

 

如何使用

基本的html结构如下:

<h1 class="tlt">My Title</h1>

在页面的头部引入jQuery和jquery.textillate.js文件。

<script src="http://libs.useso.com/js/jquery/1.9.1/jquery.min.js"></script> <script src="jquery.textillate.js"></script>

然后就可以如下调用插件。

$(function () {     $('.tlt').textillate(); })

上面的方法将会使用默认参数来调用插件。要改变默认参数,你可以使用data-属性来设置新参数。

<h1 class="tlt" data-in-effect="rollIn">Title</h1>

或者在初始化插件时设置参数:

$('.tlt').textillate({ in: { effect: 'rollIn' } });

你可以通过下面的方式来使 textillate.js 动画整个列表内容。

<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-属性来控制么一个列表项上的文本的动画效果。

插件依赖

textillate.js文字动画库插件依赖于下面的一些库文件:

可用参数

$('.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 () {},     // set the type of token to animate (available types: 'char' and 'word')   type: 'char' });

事件

Textillate 会触发下面的事件。

  • start.tlt:当textillate 开始动画时触发。
  • inAnimationBegin.tlt:当 in 动画开始时触发。
  • inAnimationEnd.tlt:当 in 动画结束时触发。
  • outAnimationBegin.tlt:当 out 动画开始时触发。
  • outAnimationEnd.tlt:当 out 动画结束时触发。
  • end.tlt:当textillate 结束动画时触发。

方法

  • $element.textillate('start'):手动开始/重置textillate动画。
  • $element.textillate('stop'):手动暂停/停止textillate动画。
  • $element.textillate('in'):触发当前文字的 in 动画。
  • $element.textillate('out'):触发当前文字的 out 动画。

标签:textillate,jQuery,set,tlt,动画,js,css3,out
From: https://www.cnblogs.com/skonw/p/18597536

相关文章

  • JQuery 实现简易记事簿
    这里运用到的技术:1、localStorage保存数据到浏览器,和从浏览器中localStorage取到数据2、JSON.stringify()方法和JSON.parse()方法的运用3、setSelectionRange()方法4、数组的prop添加内容,splice(i,1)删除和替换splice(i,0,'aa')5、attr()和prop()6、on绑定事件html:<ht......
  • jQuery点击弹出侧边栏提示信息面板特效
    这是一款用于信息提示的jQuery点击弹出侧边栏提示面板特效插件。当用户点击某个按钮、超链接或进行某些操作后,该插件可以在屏幕的上、下、左、右四个方向弹出一个信息提示面板,来告诉用户操作的结果。在线DEMO  下载 使用方法要使用这个信息替代插件,首先要在页面的头部引......
  • jQuery绚丽全屏飘雪花特效插件
    这是一款使用jQuery制作的绚丽全屏飘雪花特效插件。使用该下雪效果插件可以为你的网站添加非常酷的飘雪效果。 在线预览 下载 对于使用Firefox3.5+、Safari或Chrome浏览器的用户,可以看到下雪场景中的雪花有深度层次感和旋转效果。该jQuery飘雪插件只占用极小的CP......
  • 使用css3实现小车行驶的动画效果
    <!DOCTYPEhtml><html><head><title>CarAnimation</title><style>body{background-color:#f0f0f0;}.container{width:800px;height:200px;margin:50pxauto;border:1pxsolid#ccc;position:relative......
  • 使用css3制作雪花效果
    <!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metaname="viewport"content="width=device-width,initial-scale=1.0"><title>SnowfallEffect</title&......
  • JQuery与iframe交互
    1.父页面调用子页面元素$("#iframe的ID").contents().find("#iframe子页面的id").click();2.父页面调用子页面方法$("#iframe的ID").[0].contentWindow.子页面中的方法();3.子页面获取父页面元素$("#父页面元素ID",parent.document);4.子页面操作父页面方法window.......
  • 基于SVG的jQuery星级评分插件-jRate
    jRate是一款基于SVG的 Jquery星级评分插件。jRate能够通过参数设置来提供各种实用的评分功能。在线演示 下载 基本使用在页面中引入jQuery和jRate.js文件。<scripttype="text/javascript"src="js/jquery.min.js"></script><scripttype="text/javascript"......
  • jQuery和css3全屏弹出式导航菜单特效插件
    这是一款效果非常酷的jQuery和css3全屏弹出式导航菜单特效插件。 在线预览 下载HTML结构html结构使用一个<header>作为wrapper。里面放logo、登录/注册按钮和用于触发全屏导航菜单的触发按钮。全屏导航菜单放置在header外面,为它使用easier的CSStransformation效果。<......
  • jQuery select下拉菜单美化插件ddlist
    在线演示 下载service.ddlist.jquery是一款小巧的jquery下拉列表插件,它允许我们在下拉列表中插入图片、文本和其它一些额外的东西。该下拉列表插件通过<select>元素开发,使用jQuery将其隐藏,并生成新的html结构。HTML结构要使用该插件,首先要在html的header中引入以下文件:......
  • 使用css3画个旋转的立方体
    <!DOCTYPEhtml><html><head><metacharset="UTF-8"><title>RotatingCube</title><style>body{background-color:#333;display:flex;justify-content:center;align-items:center;min-height:......