Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
react-animation-on-scroll
Advanced tools
React component to animate elements on scroll with [animate.css](https://daneden.github.io/animate.css/). This library is re-implementation of [dbramwell/react-animate-on-scroll](https://github.com/dbramwell/react-animate-on-scroll). Re-implemented the ol
React component to animate elements on scroll with animate.css. This library is re-implementation of dbramwell/react-animate-on-scroll. Re-implemented the old one with react functional components in TypeScript. Also added animate.css@4.0+ support. Supports server-side rendering and TypeScript.
npm install react-animation-on-scroll --save
or
yarn add react-animation-on-scroll
Please be sure to include animate.css (version 4 and higher) in someway in your project This can be done in a number of ways, eg:
npm install --save animate.css
or
yarn add animate.css
and then importing in your project:
import "animate.css/animate.min.css";
Or by simply including a link to the file hosted by CDNJS:
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
</head>
import { AnimationOnScroll } from 'react-animation-on-scroll';
<AnimationOnScroll animateIn="animate__bounceIn">
<h2>Some Text</h2>
</AnimationOnScroll>
offset - default 150
The "viewport" is by default 150 pixels from the top and bottom of the screen. When part of an element is within the "viewport", animateIn is triggered. When no part of the element is in the "viewport", animateOut is triggered. This size of the "viewport" can be overridden by setting the offset property.
animateIn
Any css animation defined against a class, be it from animate.css or an animation that you have created yourself. The Animation triggers when the element enters the "viewport" (see offset property for more details on this).
animateOut
Any css animation defined against a class, be it from animate.css or an animation that you have created yourself. The Animation triggers when the element is leaving the "viewport" (see offset property for more details on this).
duration - default 1
Animation duration in seconds.
initiallyVisible - default false
Whether the element should be visible to begin with or not. Recomending to set true if you have got server-side rendering.
delay - default 0
How long to delay the animation for (in milliseconds) once it enters or leaves the view.
animateOnce - default false
Whether the element should only animate once or not.
style - default {}
A style object can be assigned to any ScrollAnimation component and will be passed to the rendered dom element. Its probably best to avoid manually setting animationDuration or opacity as the component will modify those attributes.
scrollableParentSelector
By default the code checks to see if the element is visible within the window. This can be changed to any other parent element of the ScrollAnimation by adding a css selector pointing to the parent that you wish to use.
afterAnimatedIn
Callback function to run once the animateIn animation has completed. Receives the visibility of the element at time of execution. Example:
function(visible) {
if (visible.inViewport) {
// Part of the element is in the viewport (the area defined by the offset property)
} else if (visible.onScreen) {
// Part of the element is visible on the screen
} else {
// Element is no longer visible
}
}
afterAnimatedOut
Callback function to run once the animateOut animation has completed. Receives the visibility of the element at time of execution. Example:
function(visible) {
if (visible.inViewport) {
// Part of the element is in the viewport (the area defined by the offset property)
} else if (visible.onScreen) {
// Part of the element is visible on the screen
} else {
// Element is no longer visible
}
}
animatePreScroll - default true
By default if a ScrollAnimation is in view as soon as a page loads, then the animation will begin. If you don't want the animation to being until the user scrolls, then set this to false.
Please feel free to contribute or contact from contact@metinarslanturk.com
FAQs
React component to animate elements on scroll with [animate.css](https://daneden.github.io/animate.css/). This library is re-implementation of [dbramwell/react-animate-on-scroll](https://github.com/dbramwell/react-animate-on-scroll). Re-implemented the ol
We found that react-animation-on-scroll 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.