flex-card-hover-effect
v0.0.1
Published
An Astro component that creates an interactive, responsive card layout using Flexbox. Each card features a smooth hover animation that highlights the active card while subtly dimming or scaling the others. Perfect for showcasing projects, team members, or
Maintainers
Readme
flex-card-hover-effect
An Astro component that creates an interactive, responsive card layout using Flexbox. Each card features a smooth hover animation that highlights the active card while subtly dimming or scaling the others. Perfect for showcasing projects, team members, or product previews with an elegant and modern touch.
Installation 📖
# You can intall with npm
npm install flex-card-hover-effect
# or with yarn
yarn add flex-card-hover-effect
# or with pnpm
pnpm add flex-card-hover-effectUsage ⚙️
---
import FlexCardHoverEffect from 'flex-card-hover-effect';
---
<FlexCardHoverEffect arrayImages={[
{ src: '../img-1.avif', text: 'Card 1 '},
{ src: '../img-2.avif', text: 'Card 2 '},
{ src: '../img-3.avif', text: 'Card 3 '}
]} />
