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.
react-skrollr
Advanced tools
React Component parallax scrolling JavaScript library base on Skrollr
React Component parallax scrolling JavaScript library base on Skrollr
See live demo
$ npm install --save react-skrollr
import { ParallaxProvider, Parallax } from 'react-skrollr'
Use init config via props init
(props type is object)
Skrollr init Options
Add ParallaxProvider
into root app
class App extends React.Component {
render() {
return (
<ParallaxProvider
init={{
smoothScrollingDuration: 500,
smoothScrolling: true,
forceHeight: false
}}
>
...
</>
)
}
}
Use data scrolling via props data
(props type is object)
Skrollr Data attr document
const Component = () => {
return (
<Parallax
data={{
'data-center-center': 'opacity: 1;',
'data-bottom-top': 'opacity: 0;'
}}
>Some content</Parallax>
)
}
class App extends React.Component {
render() {
return (
<ParallaxProvider>
<Parallax
data={{
'data-center-center': 'opacity: 1;',
'data-bottom-top': 'opacity: 0;'
}}
>
Some content or Component
</Parallax>
</ParallaxProvider>
);
}
}
Thank you for your suggestions!
FAQs
React Component parallax scrolling JavaScript library base on Skrollr
The npm package react-skrollr receives a total of 72 weekly downloads. As such, react-skrollr popularity was classified as not popular.
We found that react-skrollr 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.