Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
animate-transition
Advanced tools
Library for transition animations between blocks (pages) in the application
Library for transition animations between blocks (pages) in the application.
See live examples:
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
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.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(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.
FAQs
Library for transition animations between blocks (pages) in the application
The npm package animate-transition receives a total of 1 weekly downloads. As such, animate-transition popularity was classified as not popular.
We found that animate-transition demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.