react-color-scroll alternatives and similar libraries
Based on the "Miscellaneous" category.
Alternatively, view react-color-scroll alternatives based on common mentions on social networks and blogs.
-
react-facebook
Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post -
react-avatar
Universal avatar makes it possible to fetch/generate an avatar based on the information you have about that user. -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
react-headings
โ Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO. -
react-swipe-to-delete-ios
A simple React component to reproduce the way iOS deletes an item in a list -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-pagespeed-score
DISCONTINUED. A React component for display a dial-type chart of PageSpeed Insights.
SaaSHub - Software Alternatives and Reviews
Do you think we are missing an alternative of react-color-scroll or a related project?
README
React color scroll
React color scroll is a simple component which allows you to blend between colors as you're scrolling down the page. You can use it to fill an entire page, or within a wrapped container. โจ
Install
npm i -S react-color-scroll
Usage
import React from 'react'
import ColorScroll from 'react-color-scroll'
class HomePage extends React.PureComponent {
render () {
return (
<ColorScroll
colors={['#FFFCF9', '#FFF9F9', '#FCF9FF']}
className='my-color-scroll' // Defaults to 'color-scroll'
onScroll={(e) => console.log(e)} // Optional access to the onScroll event
>
{/* Your site content in here */}
</ColorScroll>
)
}
}
export default HomePage
It works by splitting up the container's scroll height and calculating the correct time to blend between colors for each color to have an equal percentage of your content.
License
*Note that all licence references and agreements mentioned in the react-color-scroll README section above
are relevant to that project's source code only.