
Product
Introducing the Alert Details Page: A Better Way to Explore Alerts
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.
multicarousel
Advanced tools
A dependency free multiple item JavaScript carousel.
Install with NPM:
npm install multicarousel
Check it out: https://sciactive.github.io/multicarousel/demo/
Using it requires you to pass in an array of children DOM elements. Like this:
var container = document.getElementById('MyCarousel');
var carousel = new MultiCarousel({
target: container,
data: {
items: Array.prototype.slice.call(container.children),
// The rest of these are optional. Here are the defaults.
delay: 1500, // Delay between slides.
transition: 600, // Duration of slide transition.
count: 5, // How many items to show at once.
controls: [ // Which controls are visible.
'previous',
'next',
'pause',
'start'
]
}
}
});
// Programmatic slide triggering.
carousel.previous();
carousel.next();
// Stop and start the carousel.
carousel.pause();
carousel.start();
It's made with Svelte, which means you don't need any library JS. Just use the file in the lib directory.
Icons were provided by Font Awesome and Font-Awesome-SVG-PNG.
FAQs
A dependency free multiple item JavaScript carousel.
The npm package multicarousel receives a total of 6 weekly downloads. As such, multicarousel popularity was classified as not popular.
We found that multicarousel 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.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.