2.0.8 • Published 18 days ago

astro-carousel v2.0.8

Weekly downloads
-
License
-
Repository
-
Last release
18 days ago

astro-carousel 🎠

An accessible carousel component for Astro 🚀 that works by using browser navigation.

Demo: https://astro-carousel.pages.dev Live example: https://kuraunaito.com/photos/saint-malo/?image=0

Installation

npm install astro-carousel

Usage

Import astro-carousel to your Astro component

---
import Carousel from 'astro-carousel';
---
...

To open the carousel from a list of images, you need to use id="carouselTargetList" in the parent element and data-carousel-index={index} in the anchor tag of children elements. You also need to set the href of the anchor tag to href={`${path}?image=${index}`}.

<ul id="carouselTargetList">
  {
    images.map((img, index) => {
      return (
        <li>
          <a
            href={`/?image=${index}`}
            data-carousel-index={index}
          >
            <img src={img} alt="" />
          </a>
        </li>
      );
    })
  }
</ul>

After importing the Carousel component in your Astro component, you just need to create a list of images and pass it as a prop.

---
const images: ComponentProps<typeof Carousel>["images"] = [
  {
    src: "https://a.storyblok.com/f/95455/1350x1080/3ef7748922/p5240368.jpg",
    alt: "",
    format: "webp",
    width: 1350,
    height: 1080,
    widths: [450, 675, 1350],
  }
];
---

<Carousel images={images} />
2.0.7

18 days ago

2.0.8

18 days ago

2.0.6

1 month ago

2.0.3

1 month ago

2.0.2

1 month ago

2.0.5

1 month ago

2.0.4

1 month ago

2.0.1

1 month ago

2.0.0

2 months ago

1.0.4

2 months ago

1.0.3

2 months ago

1.0.2

8 months ago

1.0.1

9 months ago

1.0.0

9 months ago

0.0.1

9 months ago