Reusables

Animated Card Carousel

A responsive animated card carousel component with auto-rotation, size variants. Ideal for showcasing products, portfolios, testimonials.

Installation

npx shadcn@latest add "https://reusables.vercel.app/r/animated-card-carousel"

Example

Portfolio Builder

Create stunning professional portfolios with our intuitive drag-and-drop interface. Showcase your work with beautiful layouts and responsive designs.

View Project

Health Tracker

Monitor your fitness journey with comprehensive health analytics. Track workouts, nutrition, and wellness metrics all in one secure application.

View Project

Learning Platform

Access world-class educational content with our interactive learning platform. Master new skills with personalized courses and expert-led tutorials.

View Project

E-Commerce Solution

Launch your online store with our comprehensive e-commerce platform. Manage inventory, process payments, and grow your business with powerful analytics.

View Project

Customize Animation

Portfolio Builder

Create stunning professional portfolios with our intuitive drag-and-drop interface. Showcase your work with beautiful layouts and responsive designs.

View Project

Health Tracker

Monitor your fitness journey with comprehensive health analytics. Track workouts, nutrition, and wellness metrics all in one secure application.

View Project

Learning Platform

Access world-class educational content with our interactive learning platform. Master new skills with personalized courses and expert-led tutorials.

View Project

E-Commerce Solution

Launch your online store with our comprehensive e-commerce platform. Manage inventory, process payments, and grow your business with powerful analytics.

View Project

Usage

Basic Usage

Here’s a simple example of using the Animated Card Carousel component:

import { useState } from "react"
 
import AnimatedCard from "@/components/ui/animated-card-carousel"
 
export default function AnimatedCardDemo() {
  const [activeIndex, setActiveIndex] = useState(0)
 
  // Example cards data
  const cards = [
    {
      title: "Portfolio Builder",
      description:
        "Create stunning professional portfolios with our intuitive drag-and-drop interface.",
      imgSrc: "/images/portfolio.webp",
      color: "#3b82f6",
      href: "#",
    },
    {
      title: "Health Tracker",
      description:
        "Monitor your fitness journey with comprehensive health analytics.",
      imgSrc: "/images/health.webp",
      color: "#10b981",
      href: "#",
    },
    // Add more cards as needed
  ]
 
  return (
    <div className="grid gap-3 md:grid-cols-2">
      {cards.map((card, index) => (
        <AnimatedCard
          key={index}
          title={card.title}
          description={card.description}
          imgSrc={card.imgSrc}
          color={card.color}
          href={card.href}
          isActive={index === activeIndex}
          onMouseEnter={() => setActiveIndex(index)}
          onMouseLeave={() => {}}
          animationDuration={0.5}
          animationEase="easeInOut"
        />
      ))}
    </div>
  )
}

Auto-Rotation Functionality

Add auto-rotation to your cards with this implementation:

import { useEffect, useState } from "react"
 
import AnimatedCard from "@/components/ui/animated-card-carousel"
 
export default function RotatingAnimatedCardDemo() {
  const cards = [
    // Your card data here
  ]
  const [activeIndex, setActiveIndex] = useState(0)
  const [isHovering, setIsHovering] = useState(false)
  const [rotationSpeed, setRotationSpeed] = useState(3000)
  const [animationDuration, setAnimationDuration] = useState(0.5)
  const [animationEase, setAnimationEase] = useState("easeInOut")
 
  useEffect(() => {
    let interval: NodeJS.Timeout
 
    if (!isHovering) {
      interval = setInterval(() => {
        setActiveIndex((prevIndex) => (prevIndex + 1) % cards.length)
      }, rotationSpeed)
    }
 
    return () => clearInterval(interval)
  }, [isHovering, cards.length, rotationSpeed])
 
  const handleMouseEnter = (index: number) => {
    setIsHovering(true)
    setActiveIndex(index)
  }
 
  const handleMouseLeave = () => {
    setIsHovering(false)
  }
 
  return (
    <div className="grid gap-3 md:grid-cols-2">
      {cards.map((card, index) => (
        <AnimatedCard
          key={index}
          title={card.title}
          description={card.description}
          imgSrc={card.imgSrc}
          color={card.color}
          href={card.href}
          isActive={index === activeIndex}
          onMouseEnter={() => handleMouseEnter(index)}
          onMouseLeave={handleMouseLeave}
          animationDuration={animationDuration}
          animationEase={animationEase}
        />
      ))}
    </div>
  )
}

Custom Styling

<AnimatedCard
  title="Project Title"
  description="Project description goes here"
  imgSrc="/path/to/image.png"
  color="#2e428a"
  href="#"
  isActive={true}
  onMouseEnter={() => {}}
  onMouseLeave={() => {}}
  className="my-custom-class"
  imageClassName="my-image-class"
  titleClassName="text-2xl font-bold"
  descriptionClassName="text-sm"
  linkClassName="font-medium"
  animationDuration={0.7}
  animationEase="backOut"
/>

API Reference

PropTypeDefault
title
string
-
description
string
-
imgSrc
StaticImageData | string
-
color
string
-
href
string
-
isActive
boolean
-
onMouseEnter
() => void
-
onMouseLeave
() => void
-
className
string
-
imageClassName
string
-
titleClassName
string
-
descriptionClassName
string
-
linkClassName
string
-
animationDuration
number
0.5
animationEase
AnimationEase
easeInOut

AnimationEase

PropTypeDefault
easeInOut
string
-
easeIn
string
-
easeOut
string
-
linear
string
-
circIn
string
-
circOut
string
-
circInOut
string
-
backIn
string
-
backOut
string
-
backInOut
string
-
Edit on GitHub

Last updated on