A carousel/slider implementation in TypeScript for SolidJS. It's built on Keen-Slider 6, an open-source library agnostic touch slider with native touch/swipe behavior and great performance. It comes with no dependencies, TypeScript support, multitouch support and is compatible with all common browsers.
npm install solid-slider --save
yarn add solid-slider ## or in yarn
Add as a module:
import "solid-slider/slider.css";
import createSlider from "solid-slider";
You can find a functional demo of the slider with most features implemented here: https://codesandbox.io/s/solid-slider-j0x2g
Plugins may be added directly via the createSlider primitive. You may add a Keen-Slider plugin directly or built-in plugins shipped with this package. Currently an autoplay plugin is available that will assist with autoplaying actions in the slider. Simply add the plugins after the options parameter. Please feel free to post requests for additional plugins or submit PRs if you decide to improve the base functionality. Some ideas for additional plugins include:
- Slider nav (dot, arrow controls even thumbnails)
- Lazy loaded images
- Slide transitions
The autoplay function extends the slider with pausable playing. You can even supply a signal to control toggling autoplay. Click here for a demo of autoplay.
import createSlider from "solid-slider";
import autoplay from "solid-slider/plugins/autoplay";
const [pause, togglePause] = createSignal(false);
const [slider] = createSlider(
{ loop: true },
autoplay(2000, {
pause,
pauseOnDrag: true
})
);
The following is an example of how to create and then bind options using a directive.
const MyComponent = () => {
const options = { duration: 1000 };
const [slider, { current, next, prev, moveTo }] = createSlider(options);
return (
<div use:slider>
<div>Slide 1</div>
<div>Slide 2</div>
<div>Slide 3</div>
</div>
);
};
or without a directive:
const MyComponent = () => {
let ref: HTMLElement;
const options = { duration: 1000 };
const [slider, { current, next, prev, moveTo }] = createSlider(options);
onMount(() => {
slider(ref);
});
return (
<div ref={ref}>
<div>Slide 1</div>
<div>Slide 2</div>
<div>Slide 3</div>
</div>
);
};
Solid Slider is meant to be a lightweight and compact wrapper of Keen-Slider. It exposes helpers to make working with the slider convenient. Note that the when the slider mounts it assumes all children in the el are slides. You can override this functionality by passing in a "selector" value to target the specific slides you'd like to include.
Thie library exports it's own CSS which is the basic Keen-Slider implementation for convenience. If you supply options as an accessor function, the slider will reactively update the configuration so that you don't have to destroy and recreate the slider. As of Keen-Slider 6 plugins are now fully supported. You may supply them as a param in createSlider. Note that plugins are not reactively updated and must be supplied on creation.
- 1.0.0 - Initial release
- 1.0.3 - Changed the exported API to be slightly more flexible.
- 1.1.1 - Upgraded to Keen-Slider 6 and improved general reactivity.
- 1.2.5 - Added autoplay plugin and general plugin structure
- 1.2.7 - Maybe I should actually export the .css? That'd be a good idea, right?
You can set options to the slider via parameters. Note that there are other hooks available as well. Only a subset of useful methods are exposed via the primitive although you can access the slider instance as well from the exports to use the methods directly.