Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

🍿 A cross-browser library of CSS animations. As easy to use as an easy thing.

License

NotificationsYou must be signed in to change notification settings

luckydandan/animate.css

 
 

Repository files navigation

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.

Installation

To install via Bower, simply do the following:

$ bower install animate.css --save

or you can install via npm:

$ npm install animate.css --save

Basic Usage

  1. Include the stylesheet on your document's<head>
<head><linkrel="stylesheet"href="animate.min.css"></head>

Instead of installing you may use the remote version (hosted byCDNJS):

<head><linkrel="stylesheet"href="https://cdn.jsdelivr.net/npm/animate.css@3.5.2/animate.min.css"><!-- or --><linkrel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"></head>

You maygenerate a SRI hash of that particular version and then use it to ensure the file's integrity; also you can make anonymous requests to CDN by setting the correspondingcrossorigin attribute:

<head><linkrel="stylesheet"href="https://cdn.jsdelivr.net/npm/animate.css@3.5.2/animate.min.css"integrity="sha384-OHBBOqpYHNsIqQy8hL1U+8OXf9hH6QRxi0+EODezv82DfnZoV7qoHAZDwMwEJvSw"crossorigin="anonymous"><!-- or --><linkrel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"integrity="sha384-OHBBOqpYHNsIqQy8hL1U+8OXf9hH6QRxi0+EODezv82DfnZoV7qoHAZDwMwEJvSw"crossorigin="anonymous"></head>
  1. Add the classanimated to the element you want to animate. You may also want to include the classinfinite for an infinite loop.

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

Class Name
bounceflashpulserubberBand
shakeheadShakeswingtada
wobblejellobounceInbounceInDown
bounceInLeftbounceInRightbounceInUpbounceOut
bounceOutDownbounceOutLeftbounceOutRightbounceOutUp
fadeInfadeInDownfadeInDownBigfadeInLeft
fadeInLeftBigfadeInRightfadeInRightBigfadeInUp
fadeInUpBigfadeOutfadeOutDownfadeOutDownBig
fadeOutLeftfadeOutLeftBigfadeOutRightfadeOutRightBig
fadeOutUpfadeOutUpBigflipInXflipInY
flipOutXflipOutYlightSpeedInlightSpeedOut
rotateInrotateInDownLeftrotateInDownRightrotateInUpLeft
rotateInUpRightrotateOutrotateOutDownLeftrotateOutDownRight
rotateOutUpLeftrotateOutUpRighthingejackInTheBox
rollInrollOutzoomInzoomInDown
zoomInLeftzoomInRightzoomInUpzoomOut
zoomOutDownzoomOutLeftzoomOutRightzoomOutUp
slideInDownslideInLeftslideInRightslideInUp
slideOutDownslideOutLeftslideOutRightslideOutUp

Full example:

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

Check out all the animations here!

Usage

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

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

or use the version hosted byCDNJS

<head><linkrel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/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:

// See https://github.com/daneden/animate.css/issues/644varanimationEnd=(function(el){varanimations={animation:'animationend',OAnimation:'oAnimationEnd',MozAnimation:'mozAnimationEnd',WebkitAnimation:'webkitAnimationEnd',};for(vartinanimations){if(el.style[t]!==undefined){returnanimations[t];}}})(document.createElement('div'));$('#yourElement').one(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 mostonce. More informationhere.

You can also extend jQuery to add a function that does it all for you:

$.fn.extend({animateCss:function(animationName,callback){varanimationEnd=(function(el){varanimations={animation:'animationend',OAnimation:'oAnimationEnd',MozAnimation:'mozAnimationEnd',WebkitAnimation:'webkitAnimationEnd',};for(vartinanimations){if(el.style[t]!==undefined){returnanimations[t];}}})(document.createElement('div'));this.addClass('animated '+animationName).one(animationEnd,function(){$(this).removeClass('animated '+animationName);if(typeofcallback==='function')callback();});returnthis;},});

And use it like this:

$('#yourElement').animateCss('bounce');or;$('#yourElement').animateCss('bounce',function(){// Do somthing after animation});

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 bygulp.js, and you can create custom builds pretty easily. First of all, you’ll need Gulp and all other dependencies:

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

Next, rungulp to compile your custom builds. For example, if you want only some of the “attention seekers”, simply edit theanimate-config.json file to select only the animations you want to use.

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

License

Animate.css is licensed under the MIT license. (http://opensource.org/licenses/MIT)

Contributing

Pull requests are the way to go here. I apologise in advance for the slow action on pull requests and issues. I only have two rules for submitting a pull request: match the naming convention (camelCase, categorised [fades, bounces, etc]) and let us see a demo of submitted animations in apen. That last one is important.

About

🍿 A cross-browser library of CSS animations. As easy to use as an easy thing.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS90.2%
  • JavaScript9.8%

[8]ページ先頭

©2009-2025 Movatter.jp