GiftBox (Gift Box Animation Component)

This section previews the GiftBox component.

In this guide, we showcase the GiftBox component, designed to display an interactive gift box that opens on hover or click, revealing a surprise message.

Preview

ADD YOUR MESSAGE!!

Code

import "@elizabthpazp/intera-ui/dist/globals.css";
import { GiftBox } from "@elizabthpazp/intera-ui";

export default function Home() {
  return (
    <GiftBox 
      primaryColor={"#8E44AD"}
      secondaryColor={"#1F2937"} 
      message={"ADD YOUR MESSAGE!!"}
    />
  );
}

Component Details

The GiftBox component consists of:

  • A gift box that remains closed by default.
  • A lid animation that moves up when hovered or clicked.
  • A message reveal animation when the box is opened.
  • The box closes when the mouse leaves the component.

Props

The GiftBox component accepts several props for customization:

Prop NameTypeDescription
primaryColorstringDefines the main color of the box.
secondaryColorstringDefines the color of the lid.
secondaryAccentColorstringAdditional accent color for details.
tertiaryColorstringThird color for extra styling.
accentColorstringColor used for highlights.
shadowColorstringDefines the shadow color for depth effect.
textColorstringColor of the message text.
containerColorstringBackground color of the container holding the box.
messagestringThe text that appears when the box opens.

These props allow full customization of the component, making it adaptable for various UI requirements.

Features

  • Interactive animation using Framer Motion.
  • Customizable colors and message.
  • Supports both hover and click interactions.
  • Responsive design for different screen sizes.

This component enhances user engagement by adding a playful and dynamic animation to the interface.