Popularity
4.3
Declining
Activity
0.0
Stable
445
12
53
Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Latest version: v0.1.0
react-magic-move alternatives and similar libraries
Based on the "UI Animation" category.
Alternatively, view react-magic-move alternatives based on common mentions on social networks and blogs.
-
framer/motion
DISCONTINUED. Open source, production-ready animation and gesture library for React [Moved to: https://github.com/motiondivision/motion] -
react-flip-move
Effortless animation between DOM changes (eg. list reordering) using the FLIP technique. -
react-parallax-tilt
👀 Easily apply tilt hover effect to React components - lightweight/zero dependencies 3kB -
React Native Circle Menu
:octocat: ⭕️ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Reactnative library made by @Ramotion -
react-web-animation
React components for the Web Animations API - http://react-web-animation.surge.sh -
react-transitive-number
React component to apply transition effect to numeric strings, a la old Groupon timers -
react-tween
DISCONTINUED. DEPRECATED - Recommend https://github.com/tannerlinsley/react-move instead! -
anim-react
simple js react animation, animation hook, web Animation interface, onclick animation, onview,onsight animation, without css animation, no transition animation, js animation class usage.
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.
Promo
surveyjs.io

Do you think we are missing an alternative of react-magic-move or a related project?
README
React Magic Move
Magic Move for React.JS
NOT A PRODUCTION MODULE
This was just a fun experiment, with some love, it could definitely be a real thing, but I don't have time. I will merge pull requests to keep it working, but I don't maintain this right now.
Usage
- Wrap some ordered elements in
<MagicMove/>
- Add a key to each element
- Add some CSS transitions and border-box sizing (so the code can measure it more easily)
.Something {
transition: all 500ms ease;
box-sizing: border-box;
}
<MagicMove>
{this.sortedElementsWithKeys(this.state.sortBy)}
</MagicMove>