博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Textillate.js – 实现动感的 CSS3 文本动画的简单插件(用法详情&只支持现代浏览)...
阅读量:5924 次
发布时间:2019-06-19

本文共 1934 字,大约阅读时间需要 6 分钟。

hot3.png

第一步:

    当然是下载插件,下载地址();

第二步:

    当然是引用文件,此插件是基于 jquery的所以你的项目中必须包含 jquery插件(这个简单自己下吧),然后就是把 它的必要文件引入!

 //css文件

    

 
 
 
//(注意这几个文件最好放在最后面引入)

第三步:

    用法 html中 

Title

    js中

$('.tlt').textillate();

第四步:配置

    

$('.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 () {}});

转载于:https://my.oschina.net/leipeng/blog/217838

你可能感兴趣的文章
iis6 zencart1.39 伪静态规则
查看>>
Python学习之路7——深浅拷贝剖析
查看>>
宁波竞赛题
查看>>
Java实现Socket5代理服务器
查看>>
Android-异步图像装载机
查看>>
MySQL学习笔记——安装及配置环境
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
android 物理按键 监听
查看>>
npm 主要命令
查看>>
【Android Studio安装部署系列】五、新建你的第一个项目:HelloWorld
查看>>
使用Phaser开发你的第一个H5游戏(一)
查看>>
十、performSelector延时调用内存泄漏的问题
查看>>
理解JVM(二):垃圾收集算法
查看>>
Redux专题:实用
查看>>
杠上Spark、Flink?Kafka为何转型流数据平台
查看>>
基于事件驱动的DDD领域驱动设计框架分享(附源代码)
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
$resource in AngularJS
查看>>
初探django-使用uwsgi+supervisor+nginx来部署服务
查看>>