Code Monkey home page Code Monkey logo

animatetransition's Introduction

Animate Transition

Library for transition animations between blocks (pages) in the application.

See live examples:

Blocks Animation

Popups Animation


Animate Transition allows you to easily make transition between any two (or more, it all depends on you ) HTML elements. It can be used in different variety of situations, whatever you want to enhance appearance of your web site or navigate between pages in hybrid mobile application.

Animate Transition provides great performance due to using hardware accelerated CSS transitions. You can choose from 12 preset animation types for blocks, 8 animation types for popups or create your own CSS animation.

Animate Transition has no dependencies and supports all modern browsers, including Firefox 31+, Chrome 31+, Safari 7+, Opera 27+, IE 10+, iOS Safari 6.0+, Android Browser 2.3+

###Advantages

  • Unlike other libraries, Animate Transition let you not just animate one element, but made a transition between two in a way you like. It also has declarative style and provides callbacks to make sure that your code will be executed in right animation phase.
  • In order to prevent interaction with the UI during the transition the whole viewport is covered by the overlay.
  • You can create & use your own custom transition animation.

Is it better than the pure-CSS approach?

Actually it is the pure-CSS approach in itself - but there is a helper for convenience, which has callbacks in all browsers; animation presets are optimized and work properly; and you write your pure-CSS animation and use it with the helper.

When there are more then two dozen types of browsers on Android only (let alone adding desktops, iOS, and Windows Phone), very often it becomes a real pain without a helper and optimized CSS.

###Usage

Just include animateTransition.min.js and transitions.css

<link rel="stylesheet" href="transitions.css"/>

<script src="animateTransition.min.js"></script>

Want to know how it works? See formatted development version with comments.

###Dependence Nope $)

###Methods

blocksTransition

blocksTransition(options)

Takes the object options as the parameter. The object has the following properties:

  • container - container where the animation will take place. If the property is not defined, by default will be used document.body

  • blockIn - block, to which the transition is carried out. If it is not defined, by blockOut the block with the selected animation will disappear from the screen.

  • blockOut - block, from which the transition is carried out. If it is not defined, by blockIn the block with the selected animation will appear. At least one parameter ( blockIn or blockOut ) must be specified. container, blockIn, blockOut can be both css selectors or already existing DOM Elements.

  • animation - animation name. Currently the following blocks animations are supported by default:

    • slide-in
    • slide-out
    • fade-in
    • fade-out
    • cover-in
    • cover-out
    • cover-double-in
    • cover-double-out
    • revolution-in
    • revolution-out
    • bounce-in
    • bounce-out

    As for showing popups you can choose from 8 animations:

    • popup-scale-in
    • popup-drop-in
    • popup-revolution-in
    • popup-fade-in
    • cover-in
    • cover-left-in
    • cover-right-in
    • bounce-in

    To hide popup just replace -in by -out

    • popup-scale-out
    • popup-drop-out
    • popup-revolution-out
    • popup-fade-out
    • cover-out
    • cover-left-out
    • cover-right-out
    • bounce-out

To create custom animation with animation_name, you need to describe following css classes - .transition-animation_name for container animation, .animation_name-transition-view-to-show for blockIn and .animation_name-transition-view-to-hide for blockOut animation.

  • beforeTransition(blockIn, blockOut, container) - function that will be performed before the transition; if it is set to false, the animation will not be performed.
  • onTransitionStart(blockIn, blockOut, container, e) - function that will be performed at the start of the transition, where е is the event object.
  • onTransitionEnd(blockIn, blockOut, container, e) - function that will be performed at the end of the transition, where е is the event object.

Properties animation, beforeTransition, onTransitionStart and onTransitionEnd are optional.

Examples

To navigate between two blocks:

AnimateTransition({
   container: '.container',
   blockIn: '.newElement',
   blockOut: '.oldElement',
   animation: 'slide-in'
});

To show popup:

AnimateTransition({
   container: '.container',
   blockIn: '.popup',
   animation: 'popup-scale-in'
});

To hide popup:

AnimateTransition({
   container: '.container',
   blockOut: '.popup',
   animation: 'popup-scale-out'
});

##License

The MIT License (MIT)

Copyright (c) 2015 Mobidev

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

animatetransition's People

Contributors

antontrofimenkomobidev avatar t-sakharova avatar

Watchers

 avatar  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.