stimulus-carousel icon indicating copy to clipboard operation
stimulus-carousel copied to clipboard

A Stimulus controller to deal with carousel.

Results 5 stimulus-carousel issues
Sort by recently updated
recently updated
newest added

The demo works fine until I add bootstrap. The libraries are loaded via an importmap (as esm modules), I suspect the problem is with swiper.js but I don't know. I've...

Hi, I've been struggling to work out how to achieve the swiper thumbs navigation like here: [Thumbs](https://swiperjs.com/demos#thumbs-gallery-loop) How would i set up multiple carousels and pass the reference of one...

Hey maybe you have some thoughts about how to force to work this component with the 7th rails on tailwind. Because if you just follow the instructions it doesn't work....

**node_modules/stimulus-carousel/dist/stimulus-carousel.es.js** file has this line: `import Swiper from "swiper/bundle";` The above won't compile because the name of the swiper js file is different. It's **swiper/swiper-bundle.esm.js**, not **swiper/bundle...** If I change...

i have in my controller: carousel_controller.js ```js import Carousel from 'stimulus-carousel' import 'swiper/css'; import 'swiper/css/navigation'; import 'swiper/css/pagination'; export default class extends Carousel { connect() { super.connect() this.swiper this.defaultOptions } //...