Blossom Carousel Logo
GitHub
Advanced

Custom Scrollbar

Add a custom scrollbar to Blossom Carousel with svg, offset-path and scroll-timeline.
<div class="example">
  <BlossomCarousel class="carousel">
    <div class="slide"></div>
    <div class="slide"></div>
    <div class="slide"></div>
    ...
  </BlossomCarousel>

  <div class="scrollbar">
    <svg class="track" viewBox="0 0 300 16" fill="none">
      <!-- The faded path is the full track. -->
      <path
        d="cosinePath"
        stroke="currentColor"
        opacity="0.2"
        stroke-width="4"
        stroke-linecap="round"
      />
      <!-- The progress path is also referenced by offset-path. -->
      <path
        id="custom-scrollbar-path"
        class="progress"
        d="cosinePath"
        stroke="currentColor"
        stroke-width="4"
        stroke-linecap="round"
        pathLength="1"
      />
    </svg>

    <button class="handle"></button>
  </div>
</div>