React component that scrolls children infinitely
npm install react-infinite-tickerReact component that scrolls children infinitely.
``bash`
npm install react-infinite-ticker
`jsx
import React from "react";
import { VerticalTicker, HorizontalTicker } from "react-infinite-ticker";
function App() {
return (


Configuration
Both
VerticalTicker and HorizontalTicker take following props.$3
The number of milliseconds it should take to complete one one full animation iteration.
$3
The number of milliseconds it should wait before each iterations.
$3
The rate of the animation's change over time. Accepts the pre-defined values "linear", "ease", "ease-in", "ease-out", and "ease-in-out", or a custom "cubic-bezier" value like "cubic-bezier(0.42, 0, 0.58, 1)". Defaults to "linear". (source)
$3
The boolean indicating whether the animation should run forward or backward. Defaults to
false`