Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nadfri/react-scroll-progress-bar

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nadfri/react-scroll-progress-bar

### Add a progress bar on the top of your page to indicate the position of the scroll page

  • 0.2.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Easy Progress Bar on scroll for react

Add a progress bar on the top of your page to indicate the position of the scroll page

Install

npm i @nadfri/react-scroll-progress-bar

Live Example

https://npm-react-scroll-progress-bar.netlify.app/

Usage

//Import ProgressBar component
import { ProgressBar } from '@nadfri/react-scroll-progress-bar';

export default function App() {
  return (
    <div style={{height: "200vh"}}>
      <ProgressBar />
      {/*or*/}
      <ProgressBar 
        color1   = "gray" 
        color2   = "gold" 
        height   = "4px"
        position = "fixed" 
        />
    </div>
  );
}

Default Props

If you use <ProgressBar/> without props, default values are:

  • color of container will be gray (color1)
  • color of bar will be gold (color2)
  • position of progress bar will be fixed (position)
  • heigth of progress bar will be 4px (height)

Custom Props

  • color1 | color of the container (ex:"gray", "#fff')
  • color2 | color of the progress bar (ex: "red", "rgb(0,0,0)")
  • height | height of the progress bar (ex: "10px", "10%", "1vh")
  • position | Position of the progress bar (ex: "absolute", "fixed", "sticky", "relative")

You can use all css values for this properties.

Live Demo: Click here

Screen Shot

screanShot

Keywords

FAQs

Package last updated on 11 Feb 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc