Skip to content

[FEATURE] Rotate Lift Card Hover Utility #55307

Description

@aparna24bce11388

Feature Name

Rotate Lift Card Hover Utility


Description

Introduce a reusable Rotate Lift Card Hover Utility that gently rotates and lifts a card when hovered. The subtle rotation combined with a soft shadow enhancement creates a modern and engaging interaction for feature cards, product cards, pricing sections, portfolios, and dashboards.


Why is this useful for EaseMotion CSS?

This utility aligns with EaseMotion CSS's animation-first philosophy by providing a lightweight, reusable, and human-readable hover effect. Developers can create visually appealing card interactions with a single CSS class without using JavaScript.


HTML Snippet

<div class="rotate-lift-card">
    <h3>Hover Me</h3>
    <p>Interactive card animation.</p>
</div>

CSS Snippet

.rotate-lift-card {
  width: 280px;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rotate-lift-card:hover {
  transform: translateY(-8px) rotate(-3deg);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

Visual Reference (optional)

Similar to the subtle hover interactions used in modern portfolio websites, SaaS landing pages, and product showcase cards.


Checklist

  • This feature does not duplicate an existing EaseMotion CSS class
  • I understand my naming will be standardized by the maintainer
  • I will submit code inside submissions/ only — not in core/ or components/

Metadata

Metadata

Assignees

No one assigned

    Labels

    GSSoC-26Official GSSoC 2026 issueanimationAnimation effects, hover interactions, motion ideas, transitionsenhancementNew feature or requestgood first issueGood for newcomersgssoc:approvedApproved for GSSoC contributionshelp wantedExtra attention neededlevel:beginnerSuitable for first-time contributors

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions