Giter VIP home page Giter VIP logo

All Animation

All Animation.css is a set of nice and crazy css animations made with the purpose to bring life and interactions to your project. They are cross-browser animations which will give more emphases on your pages likes sliding controls and 3D efects...

You can view the website here -- We are going to change our layout soon

Translations

V3 is now ready to be used!

It's already on npm, but we're still improving our documentation and api.

New modules will also be released on the future, the first one will be:

  • all-animation/react πŸ₯°πŸ₯°

How to use:

It's easy to use, let's see step by step:

Step 1, install the library as dependency

It's pretty straight forward:

npm install all-animation

or

yarn add all-animation

Step 2, link the library into your project:

Currently there's thwo ways of linking all animation into your project:

Via SCSS imports:

In your main scss file of your project, just include the all-animation module, like:

// main.scss
@import "../node_modules/all-animation/scss/main"

After that you should be ready to use our library.

Loading only specific animations

In case you don't want to have the whole all-animations on your final bundle, you can import the specific animation which you want together with core all-animation dependencies:

// Core all-animation dependencies, like variables and mixins
@import "../node_modules/all-animation/scss/config/_config";

// The specific animation which you want to use
// in this case "a-bomb"
@import "../node_modules/all-animation/scss/modules/bomb/bomb"

Link directly via CSS file you can also download the css file and put it before closing the </head> tag:

<link rel="stylesheet" type="text/css" href="node_modules/all-animaton/dist/all-animation.css" />

We also include the source maps of it, so you can have a better debugging visibility during development

Step 2, HTML:

<div id="animation"></div>

<button class="anny-class">Trigger class, go!</button>

Step 3, jQuery (You can also use plain javascript):

$(".any-class").click(() =>{
 $("#animation").addClass("a-journal");
});

Optional

If you want to add the effect at some specified time, just place a timer:

Example, triggering an animation in a particular element after 2 seconds:

setTimeout(() =>{
 $("#animation").addClass("a-journal");
}, 2000);

Caution:

If you want to add some animation on an element that had another animation, or you want to restart the animation previously triggered, you have to remove the last animation and trigger the new one. Example:

 $("#animation").removeClass("a-journal").addClass("a-four-rock");

We have several classes for animations:

Specials:

  • a-dance
  • a-journal
  • a-pulse
  • a-pulse-slow
  • a-jamp
  • a-four-rock

Bounce:

  • a-enter-up-bounce
  • a-enter-down-bounce
  • a-enter-right-bounce
  • a-enter-left-bounce
  • a-scale-bounce
  • a-jump-bounce

Perspective:

For using the perspective animations, please add a parent container with a class a-perspective, like:

<div class="a-perspective">
    <!-- Your animated code here, like: -->
    <div class="a-three-flip-up">...</div>
</div>

Some classes for

  • a-three-flip-right
  • a-three-flip-up
  • a-three-flip-down
  • a-flip-left-bounce
  • a-rotate-flip
  • a-flip-right-bounce

Fading Entrances:

  • a-flip-top
  • a-flip-left
  • a-flip-right
  • a-flip-bottom

Rotate:

  • a-rotate-flip-down
  • a-rotate-down-bounce
  • a-rotate-out

Agrecives:

  • a-flash-bang
  • a-bomb

Jello

  • a-jello-horizontal
  • a-jello-vertical

Vibrate

  • a-vibrate-low
  • a-vibrate-medium
  • a-vibrate-high

Wobble

  • a-wobble-bottom
  • a-wobble-left
  • a-wobble-right
  • a-wobble-top


Contributors:

If you want to contribute to our project, read the file: contributing.md 😊

Credits:

ClΓ³vis Neto

all-animation's Projects

all-animation icon all-animation

All Animation.css is a set of nice and crazy css animations made with the purpose to bring life and interactions to your project. They are cross-browser animations which will give more emphases on your pages likes sliding controls and 3D efects...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.