CCS3动画效果插件——Animae.css和WOW.js

来源:互联网 发布:知乎 ipad笔记 编辑:程序博客网 时间:2024/06/05 05:43

CCS3动画效果插件——Animae.css和WOW.js制作下拉和刷新活动的页面,效果非常好,用法如下

基本用法

  1. 在页面的 <head>中引入样式文件:

    <head>  <link rel="stylesheet" href="animate.min.css"></head>
  2. 给你想要添加动画效果的元素加上 animated 样式,如果想要动画循环执行的话,你需要加上 infinite 样式。

  3. <h1 class="animated infinite bounce">Example</h1>

    当你将 animate.css 与 jQuery 一起使用或者添加你自己的 CSS 规则时, 你可以用 animate.css 做一大堆其他的事,使用 jQuery 动态添加动画:

    $('#yourElement').addClass('animated bounceOutLeft');

    你也可以检测一个动画是否结束了:

    $('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething);

0 0
原创粉丝点击