
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
react-scroll-progress-bar
Advanced tools
React Component for a fixed scroll progress bar. The progress bar can use the default color and height, or can be customized by any user provided height and color.
npm install react-scroll-progress-bar
import React from "react";
import ProgressBar from "react-scroll-progress-bar"; //Add this line to import the component
export default class App extends React.Component {
render() {
return (
<div>
<ProgressBar />
//This is all you need to get the default view working
</div>
);
}
}
import React from "react";
import ProgressBar from "react-scroll-progress-bar";
export default class App extends React.Component {
render() {
return (
<div>
<ProgressBar height="6" bgcolor="#000" duration="0.2" />
// Here you can add any react component or jsx // Add ProgressBar at your
top level component or Root component. // Change height and background-color
by setting respective props.
</div>
);
}
}
<ProgressBar height="8" bgcolor="#F43059" duration="1" />
height - Set height of progress bar. Default height is 8px
. Pass the number not the unit. Unit is px
bgcolor - Set background-color of progress bar. Default background-color is #F43059
.
duration - Set timing-duration for transition property. Default is 1s
. Pass the number not the unit. Unit is s
(seconds)
NOTE: To remove transition animation on progress bar, simply pass
duration="0"
to ProgressBar component.
FAQs
A scroll progress bar component for React
The npm package react-scroll-progress-bar receives a total of 380 weekly downloads. As such, react-scroll-progress-bar popularity was classified as not popular.
We found that react-scroll-progress-bar 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.