Expandable Card

A Vue component that creates an expandable card with smooth animations.

Usage

Explore New York City
The Big Apple awaits
Discover Ancient Rome
Walk through history
Safari Adventure in Kenya
Witness the Great Migration
Culinary Tour of Japan
Savor authentic flavors
Northern Lights in Iceland
Chase the aurora borealis

Props

PropTypeDefaultDescription
cardInfo
Object
requiredObject containing card information (title, description, image source, CTA text).
buttonClass
String
nullCustom CSS class for the CTA button.
backgroundClass
String
nullCustom CSS class for the card background.

Slots

SlotDescription
defaultDefault slot for custom content.

Events

EventDescription
handleClickEmitted when the CTA button is clicked while the card is expanded.

How it Works

  1. The component renders a compact card with an image, title, description, and CTA button.
  2. Clicking the card expands it into a full-screen modal with additional content.
  3. The component uses GSAP and Flip for smooth animations during expansion and collapse.
  4. The expanded view includes a scrollable content area and a semi-transparent overlay.

Customization

You can customize the ExpandableCard component:

  • Modify the cardInfo prop to change the card's content, image, and CTA text.
  • Use the buttonClass prop to add custom styling to the CTA button.
  • Use the backgroundClass prop to customize the card's background appearance.
  • Adjust the CSS variables and classes to change the appearance of the card and modal.
  • Extend the component's functionality by listening to the handleClick event.

Note

The ExpandableCard component uses GSAP and Flip for animations. Ensure that you have these libraries installed and imported in your project for the animations to work correctly.