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.
@firstandthird/carousel
Advanced tools
Simple Carousel.
npm install @firstandthird/carousel
Option | Type | Default | Description |
---|---|---|---|
autoslide | {Number} | 0 | Disabled by default. Number of milliseconds to autoslide to next one |
match | {String} | - | Media query on which the carousel shouldn't work with touch events. Useful if you want to disable touch events on tablets |
transformsEnabled | {Boolean} | false | By default, slides won't have a transform animation. If this is true they'll have a transform applied to them whenever the page is changed |
transformOn | {String} | - | This overwrites the above an only enables transform on a given media query |
Starts autosliding the carousel.
Stops the carousel.
Navigates the carousel to a given slide. Needs parameter index
(1 based).
index
- {Number} - Slide index
Allows an element (preferably a button) to go to the previous slide once clicked (if possible).
Allows an element (preferably a button) to go to the next slide once clicked (if possible).
A custom event carousel:slide:change
is fired on every slide change.
<section class="carousel" data-module="Carousel" data-module-autoslide="4000">
<div data-carousel-slides>
<div data-carousel-slide></div>
<div data-carousel-slide></div>
<div data-carousel-slide></div>
<div data-carousel-slide></div>
</div>
... content
<div data-carousel-slides>
<div data-carousel-slide></div>
<div data-carousel-slide></div>
<div data-carousel-slide></div>
<div data-carousel-slide></div>
</div>
<ul class="carousel-controls">
<li><button class="carousel-control" data-action="changeSlide" data-action-index="1" aria-selected="true"></button></li>
<li><button class="carousel-control" data-action="changeSlide" data-action-index="2" aria-selected="false"></button></li>
<li><button class="carousel-control" data-action="changeSlide" data-action-index="3" aria-selected="false"></button></li>
<li><button class="carousel-control" data-action="changeSlide" data-action-index="4" aria-selected="false"></button></li>
</ul>
</section>
There are more examples here.
FAQs
Simple carousel
We found that @firstandthird/carousel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.