GithubHelp home page GithubHelp logo

classicvalues / autoanimations Goto Github PK

View Code? Open in Web Editor NEW

This project forked from outsystems/autoanimations

0.0 1.0 0.0 16 KB

Automatically animate all inserted and removed DOM elements

License: MIT License

JavaScript 100.00%

autoanimations's Introduction

AutoAnimations

"It's like auto-tune for web pages"

Automatically animate all inserted and removed DOM elements with good defaults:

  • Slide down/up for elements with display=block & position=static
  • Fade in/out for all others
  • Elements with existing CSS transitions or animations will be left alone
  • Uses velocity.js to assure smooth 60fps animations even in mobile

compare with http://todomvc.com/examples/react/ (that has no autoanimate)

##USAGE Just include this script, and add an animation-duration to your css, e.g.

* { 
    animation-duration: .2s; 
}

####NOTES

  • Elements shown/hidden using the style's display (e.g. jquery's show, hide and toggle) will not be animated.
  • In javascript UI frameworks (e.g. React) it's recommended that this script is run after first render
  • You can add this as the URL of a bookmark to create a bookmarklet to test it in any web page:
    • javascript:(function(){document.styleSheets[0].insertRule("* {animation-duration: .2s}", 0);document.body.appendChild(document.createElement('script')).src='https://rawgit.com/OutSystems/AutoAnimations/master/AutoAnimations.js';})();
  • This overrides HTMLElement prototype methods, so it's a huge hack (only a POC) and there might be several side effects.

####EXCEPTIONS If you don't want some element to automatically animate (e.g. external libraries) just set its animation-duration to 0s, e.g. :

.SomeCustomComponent, .SomeCustomComponent * {animation-duration: 0s; }  

autoanimations's People

Contributors

hellsan631 avatar tiagosimoes avatar

Watchers

 avatar

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.