
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
interactiveparallax
Advanced tools
A module to create a parallax that interacts with the mouse move.
Live Demo Here
npm install interactiveparallax
import useParallax from "animationsequence";
// containerClass = the class name of the container where the parallax will happen.
// targetClass = the class name of the targets to apply the effect.
// alertMobileUser = argument to inform in case the device has no support for the package.(Optional)
useParallax(containerClass: string, targetClass: string, alertMobileUser?: boolean)
<!--
parallax-speed-x = X-axis parallax speed for the target. (Number between 1 and 50)
parallax-speed-y = Y-axis parallax speed for the target. (Number between 1 and 50)
-->
<div class="target" parallax-speed-x="7" parallax-speed-y="11"></div>
<!-- HTML -->
<div class="splash">
<h1 class="title target" parallax-speed="0.3">Interactive Parallax</h1>
<div class="target" parallax-speed-x="13" parallax-speed-y="19"></div>
<div class="target" parallax-speed-x="21" parallax-speed-y="14"></div>
</div>
// Javascript
useParallax("splash", "target", true);
The full source code of the Live Example can be found in the ./index.html file.
FAQs
Interactive parallax package by lnardon
We found that interactiveparallax 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.