Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
just-carousel
Advanced tools
Just an 1-item-on-screen carousel that works naturally like an iOS/android desktops and nothing else.
Just an 1-item-on-screen carousel that works naturally like an iOS/android desktops and nothing else.
– No dependencies.
– 1.6kb min + gzip, 8kb full.
– Android 4+, WP8+, iOS 7+.
– Wrote on es3 so must work on most desktop browsers (only requires support for transform3d
).
– Easy integration with React, Vue, etc.
– Unblocking UI (carousel reacts on any user action at any time). For example you can make 3 fast swype in a row.
– Based on percent-layout. It means that change of device orientation is occurring fast, because doesn't recalculate any
dimensions. Specially fine with responsive layout outside and inside of carousel.
– Supports only one slide on the screen at a time (but you can try to layout many items in each base slide). – No infinity mode (yet). — Doesn't have additional elements (like a prev/next arrows, cute little circles, etc). So you will have to do it yourself using api. – Doesn't react on mouse events. — You need to take care that all slides were the same height.
Thus, this carousel will suit you, if you just need a lightweight, simple, 1-item-on-screen touch-carousel.
$ npm install -S just-carousel
or oldschool method:
<script src="just-carousel.js"></script>
<div class="carousel">
<ul> <!-- Root element must contain ul > li structure -->
<li>1</li> <!-- li may contain anything -->
<li>2</li>
<li>3</li>
</ul>
</div>
const justCarousel = require('just-carousel'); // ← if you use build system
const carousel = new JustCarousel({
root: document.querySelector('.carousel'),
onChangePos: function (data) {
console.log(data); // {prevSlide, currentSlide}
}
});
Type: DOM Node
Required
A root element of carousel.
Type: function
Calls when the end of the animation. Accepts only object argument
contains fields: prevSlide
and currentSlide
.
MIT © f0rmat1k
FAQs
Just an 1-item-on-screen carousel that works naturally like an iOS/android desktops and nothing else.
The npm package just-carousel receives a total of 1 weekly downloads. As such, just-carousel popularity was classified as not popular.
We found that just-carousel 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.