Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
wavescrollbar-react
Advanced tools
🚀 Wavescrollbar React 🎸 is a javascript library, which adds modern progress bar at the top.
🚀 Wavescrollbar React 🌐 is a javascript library, which adds modern progress bar at the top.
Wavescrollbar is a library to create a modern, efficient and scalable scroll bar. It uses modern JavaScript, is built with TypeScript (retains compatibility with pure JavaScript) and combines elements of OOP (Object Oriented Programming).
Under the hood, Wavescrollbar uses javascript, but also provides compatibility with a wide range of other libraries, such as p. Eg ReactJs, Vuejs, Angular, which allows easy use of the countless third-party add-ons that are available.
Wavescrollbar aims to provide a ready-to-use application architecture that allows effortless creation of applications with progress bar at the top, and highly verifiable, scalable, poorly coupled and easy to maintain.
To start using Wavescrollbar you need to install it with the package manager npm or yarn, as shown in the next section or download it directly!
// To install using npm
npm install wavescrollbar -S
// Para instalar mediante yarn
yarn add wavescrollbar
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Wavescrollbar</title>
<link rel="stylesheet" href="css/wavescrollbar-react.css">
</head>
<body>
<wavescrollbar>
</wavescrollbar-react>
<script src="js/wavescrollbar-react.js"></script>
<script>
var wavescrollbar = new Wavescrollbar()
</script>
</body>
</html>
Add the javascript and css file to make it work properly!
<!-- Import the CSS file -->
<link rel="stylesheet" href="css/wavescrollbar-react.css">
<!-- Import the javascript file -->
<script src="js/wavescrollbar-react.js"></script>
N° | Method | Parameter |
---|---|---|
1 | setAnimation | None |
2 | setContainerBackground | color |
3 | setGradient | options |
4 | setBackground | color |
5 | setTransition | options |
6 | setHeight | value |
Example:
// We instantiate the animation method
wavescrollbar.setAnimation() //It does not need parameters.
Example:
/**
* @param color
* */
//
// Default-> #eeeeee
const color = "#eafbea"
wavescrollbar.setContainerBackground(color)
Example:
/**
* @param options: object
* */
const options = {
// default-> 90deg
angle: "45deg", // 0deg - 360deg
// Default-> ["#11998e", "#38ef7d"]
colors: [
"#11998e",
"#38ef7d",
"red",
"blue"
]
}
wavescrollbar.setGradient(options)
Example:
/**
* @param color
* */
// Default-> pink
const color = "red"
wavescrollbar.setBackground(color)
Example:
/**
* @param options
* */
const options = {
// Default-> .2s
duration: "100ms",
// Default-> 0s
delay: '0s',
// Default-> linear
timing: "ease-in-out" // "linear" | "ease" | "ease-in" | "ease-in-out" | "ease-out"
}
wavescrollbar.setTransition(options)
Example:
/**
* @param value
* */
// Default-> 5px
const height = "10px"
wavescrollbar.setHeight(height)
Wavescrollbar is an open source project licensed by MIT. You can grow thanks to the sponsors and the support of the amazing sponsors. If you want to join them, contact me here.
Wavescrollbar is MIT licensed.
FAQs
🚀 Wavescrollbar React 🎸 is a javascript library, which adds modern progress bar at the top.
The npm package wavescrollbar-react receives a total of 1 weekly downloads. As such, wavescrollbar-react popularity was classified as not popular.
We found that wavescrollbar-react 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.