All Components
Creating Animated Links with Tailwind CSS in Next.js
This CustomLink
component creates animated links that display the link text twice. When hovered, the text moves upwards with a smooth transition effect. Below is a breakdown of how the component works and how it can be used.
CustomLink
Component Code
<Link>
Component: TheLink
component from Next.js is used to create client-side navigation. Thehref
prop defines the destination URL.group
class: Tailwind'sgroup
class is used to target child elements for hover states. This allows you to apply hover styles to child elements when the parent is hovered.- Text movement on hover: Inside the link container, there are two
span
elements that both display the samelabel
text. Thegroup-hover:-translate-y-10
class is used to move the text upwards when the parentgroup
is hovered, creating a sliding effect. Thetransition duration-700
class ensures the movement happens smoothly over 700 milliseconds. - Overflow hidden: The
overflow-hidden
class ensures that any content that moves outside the boundaries of the container (due to thetranslate-y
property) is hidden.
How to Use CustomLink
Here’s how you can use the CustomLink
component in your layout:
Happy Coding 👋
Want to Learn How to Build These Components Yourself?
We have step-by-step tutorials for every component to help you create stunning interfaces with ease.
Watch Tutorials on YouTube