Blossom Carousel Logo
Basic

Buttons

Use .prev() and .next() to cycle through slides with interactive buttons.
1
2
3
4
5
6
7
8
9
10
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 1rem;
}

.slide {
  width: 100%;
  aspect-ratio: 3 / 4;
}