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.
scroll-snap-arrows
Advanced tools
Add arrows to your scrollable elements that scroll to the next available snap position.
The arrow elements will automatically hide if there are no more snap positions available in its direction.
Uses scroll-snap-api.
yarn add scroll-snap-arrows
npm install --save scroll-snap-arrows
Or use directly:
import { ScrollSnapArrows } from 'https://cdn.pika.dev/scroll-snap-arrows';
Add whichever directions you want. Pass a CSS selector as the attribute value.
Here's an example with all four directions:
<div class="scrollable-element"
data-scroll-snap-arrow-left=".left-button"
data-scroll-snap-arrow-right=".right-button"
data-scroll-snap-arrow-up=".up-button"
data-scroll-snap-arrow-down=".down-button"
>
...
</div>
<button class="left-button">⏪</button>
<button class="right-button">⏩</button>
<button class="up-button">⏫</button>
<button class="down-button">⏬</button>
<script>
new ScrollSnapArrows( document.querySelector( '.scrollable-element' ) );
</script>
<div class="scrollable-element">
...
</div>
<button class="left-button">⏪</button>
<button class="right-button">⏩</button>
<button class="up-button">⏫</button>
<button class="down-button">⏬</button>
<script>
const arrows = new ScrollSnapArrows( document.querySelector( '.scrollable-element' ) );
arrows.addArrow( 'left', document.querySelector( '.left-button' ) );
arrows.addArrow( 'right', document.querySelector( '.right-button' ) );
arrows.addArrow( 'up', document.querySelector( '.up-button' ) );
arrows.addArrow( 'down', document.querySelector( '.down-button' ) );
</script>
FAQs
Add arrows to CSS scroll-snap containers
We found that scroll-snap-arrows 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.