A Vue component that reveals text with a smooth animation as the user scrolls.
To use the TextReveal component, import it into your Vue component and pass the desired text as its content. You can also customize the scrollable container and the CSS classes applied to the text.
Prop | Type | Default | Description |
---|---|---|---|
triggerElement | String | null | CSS selector for the scrollable container. If null, defaults to window. |
class | String | h-[100vh] sticky top-0 | CSS classes to apply to the text container. |
Slot | Description |
---|---|
default | Content to be revealed. Typically text content. |
You can customize the appearance and behavior of the TextReveal component:
class
prop to change the styling of the text container.gsap.fromTo()
call within the component to change the reveal effect.ScrollTrigger
configuration to adjust when and how the animations are triggered.This component requires the following libraries:
Make sure these dependencies are installed and properly imported in your project.
The TextReveal component is designed to work within scrollable containers. Ensure that the parent element has sufficient height for scrolling to occur and trigger the animations.