Command Palette

Search for a command to run...

Loading component...

Components Free Inverted perspective carousel

Inverted perspective carousel

A beautiful 3D coverflow carousel with smooth animations and customizable navigation. Features a stunning 3D effect that creates depth and visual interest with centered slides and customizable options.

Dependencies

Interaction Type

Try swiping cards left or right
Try grab a card and go all the way to end
Optional autoplay with customizable timing
npx shadcn add @skiper-ui/skiper49

How to use

import { Carousel_003 } from "@/components/v1/skiper49";

// Using the carousel component with custom images
const CustomCarousel = () => {
  const images = [
    {
      src: "/path/to/image1.jpg",
      alt: "Description 1",
    },
    {
      src: "/path/to/image2.jpg",
      alt: "Description 2",
    },
    // ... more images
  ];

  return (
    <Carousel_003
      images={images}
      showPagination={true}
      showNavigation={true}
      loop={true}
      autoplay={true}
      spaceBetween={0}
    />
  );
};
Props
Description

Customization

The carousel uses Swiper.js with the coverflow effect. You can customize the 3D effect by modifying the coverflowEffect object

{{
  rotate: 40, // Rotation angle
  slideShadows: true, // Enable/disable slide shadows
  stretch: 0, // Stretch effect
  depth: 100, // Depth of the 3D effect
  modifier: 1, // Effect modifier
}}

style Customization

  • Well most of the style you can customize inline.
  • But some style you have to do it with css classes.
  • Find out the style name from dev tools.
  • Access it with you className.
<Swiper className="Carousal_001" />
.Carousal_001 {
  padding-bottom: 50px !important;
}

.Carousal_001 .swiper-slide {
  border: 1px solid red;
}

.Carousal_001 .swiper-pagination {
  color: red;
}

.Carousal_001 .swiper-pagination-bullet-active {
  background: red;
}

Attribution

Source code

Click on the top right
to view the source code

Keep in mind

Most components here are recreations of the best out there. I don't claim to be the original creator. This is my attempt to reverse-engineer, replicate, and often add a few extra features. I've tried to credit everyone, but if I missed something, let me know.

Contact

Additionlly, if you find any bug or issue, feel free to
Drop a dm.

License & Usage:

  • Free to use and modify in both personal and commercial projects.
  • Attribution to Skiper UI is required when using the free version.
  • No attribution required with Skiper UI Pro.
Inverted perspective carousel | Skiper UI | Skiper UI