Popularity
0.7
Growing
Activity
0.0
Stable
9
0
3
Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags:
UI Animation
react-scroll-rotate alternatives and similar libraries
Based on the "UI Animation" category.
Alternatively, view react-scroll-rotate 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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of react-scroll-rotate or a related project?
README
react-scroll-rotate (demo)
Very simple react component for rotate element based on scroll position
Install
npm install --save react-scroll-rotate
Usage
import React, { Component } from 'react';
import { ScrollRotate } from 'react-scroll-rotate';
function MyTitleComp(props) {
return (<MyTitleWrapper>
Hello <ScrollRotate><span>world</span></ScrollRotate>
</MyTitleWrapper>)
}
Props
Property | Type | Default | Description |
---|---|---|---|
target |
string | null | Target element id. By default it will use window scroll |
throttle |
number | null | Use 'throttle' prop to invoke the update once in X seconds |
from |
number | 0 | Rotation start point |
to |
number | 360 | Rotation end point |
method |
string | 'px' | Use 'perc' to change rotation based on scroll percantges. |
loops |
number | 1 | When using method 'perc', define how many loops component will do while scrolling to bottom |
animationDuration |
number | 0.1 | Animation duration |
License
MIT
*Note that all licence references and agreements mentioned in the react-scroll-rotate README section above
are relevant to that project's source code only.