zoukankan      html  css  js  c++  java
  • css 动画类库Animate.css

    地址为:http://daneden.github.io/animate.css/

    源码地址为:https://github.com/daneden/animate.css

    简单的使用方法:

    Animate.css

    Just-add-water CSS animation

    animate.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.

    Basic Usage

    1. Include the stylesheet on your document's <head>

      <head>
        <link rel="stylesheet" href="animate.min.css">
      </head>
    2. Add the class animated to the element you want to animate. You may also want to include the classinfinite for an infinite loop.

    3. Finally you need to add one of the following classes:

      • bounce
      • flash
      • pulse
      • rubberBand
      • shake
      • swing
      • tada
      • wobble
      • jello
      • bounceIn
      • bounceInDown
      • bounceInLeft
      • bounceInRight
      • bounceInUp
      • bounceOut
      • bounceOutDown
      • bounceOutLeft
      • bounceOutRight
      • bounceOutUp
      • fadeIn
      • fadeInDown
      • fadeInDownBig
      • fadeInLeft
      • fadeInLeftBig
      • fadeInRight
      • fadeInRightBig
      • fadeInUp
      • fadeInUpBig
      • fadeOut
      • fadeOutDown
      • fadeOutDownBig
      • fadeOutLeft
      • fadeOutLeftBig
      • fadeOutRight
      • fadeOutRightBig
      • fadeOutUp
      • fadeOutUpBig
      • flipInX
      • flipInY
      • flipOutX
      • flipOutY
      • lightSpeedIn
      • lightSpeedOut
      • rotateIn
      • rotateInDownLeft
      • rotateInDownRight
      • rotateInUpLeft
      • rotateInUpRight
      • rotateOut
      • rotateOutDownLeft
      • rotateOutDownRight
      • rotateOutUpLeft
      • rotateOutUpRight
      • hinge
      • rollIn
      • rollOut
      • zoomIn
      • zoomInDown
      • zoomInLeft
      • zoomInRight
      • zoomInUp
      • zoomOut
      • zoomOutDown
      • zoomOutLeft
      • zoomOutRight
      • zoomOutUp
      • slideInDown
      • slideInLeft
      • slideInRight
      • slideInUp
      • slideOutDown
      • slideOutLeft
      • slideOutRight
      • slideOutUp

    Full example:

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

    Usage

    To use animate.css in your website, simply drop the stylesheet into your document's <head>, and add the class animated to an element, along with any of the animation names. That's it! You've got a CSS animated element. Super!

    <head>
      <link rel="stylesheet" href="animate.min.css">
    </head>

    You can do a whole bunch of other stuff with animate.css when you combine it with jQuery or add your own CSS rules. Dynamically add animations using jQuery with ease:

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

    You can also detect when an animation ends:

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

    View a video tutorial on how to use Animate.css with jQuery here.

    Note: jQuery.one() is used when you want to execute the event handler at most once. More informationhere.

    You can change the duration of your animations, add a delay or change the number of times that it plays:

    #yourElement {
      -vendor-animation-duration: 3s;
      -vendor-animation-delay: 2s;
      -vendor-animation-iteration-count: infinite;
    }

    Note: be sure to replace "vendor" in the CSS with the applicable vendor prefixes (webkit, moz, etc)

    Custom Builds

    Animate.css is powered by Grunt, and you can create custom builds pretty easily. First of all, you’ll need Grunt and all other dependencies:

    $ cd path/to/animate.css/
    $ sudo npm install

    Next, run grunt watch to watch for changes and compile your custom builds. For example, if you want only some of the the “attention seekers”, simply edit the animate-config.json file to select only the animations you want to use.

    "attention_seekers": {
      "bounce": true,
      "flash": false,
      "pulse": false,
      "shake": true,
      "swing": true,
      "tada": true,
      "wobble": true,
      "jello":true
    }

    https://github.com/daneden/animate.css

  • 相关阅读:
    Android Service启动原理分析
    线程池原理分析
    仿EventBus做一个简单的基于订阅发布的事件总线
    EventBus原理以及源代码分析
    Android从点击Launcher图标开始到App打开流程分析
    使用LruCache和DiskLruCache手写一个ImageLoader
    OkHttp2连接池复用原理分析
    OkHttp执行流程源码分析
    Android使用动态代理模仿Retrofit的create方法,使其可以返回任意的接口类型
    Android模仿Retrofit的建造者模式
  • 原文地址:https://www.cnblogs.com/rongfengliang/p/4541733.html
Copyright © 2011-2022 走看看