Flip Words

A set of components for creating animated word cycling effects with different styles.

Usage Example

Create  
Wonderful
Wonderful
Dynamic
Cool
Better
sentences

Customization

You can customize the FlipWord components by:

  • Adjusting the words prop to change the displayed text
  • Modifying the intervals and duration props to control the timing of animations
  • Changing the ease prop to alter the animation style
  • Applying custom CSS classes using the class prop

Here's an example of customized FlipWord components:

Customize  
animations
animations
transitions
effects
movements
with FlipWordDefault
Create  
smooth
elegant
subtle
graceful
fades

FlipWordDefault

The FlipWordDefault component creates a word cycling effect with a scrolling animation.

PropTypeDefaultDescription
class
String
noneAdditional CSS classes to apply to the component.
words
Array
['One', 'Two', 'Three']An array of words to cycle through.
intervals
Number
2000The time in milliseconds between word changes.
duration
Number
0.6The duration of the animation in seconds.
ease
String
'power3.out'The easing function for the animation.

FlipWordFaded

The FlipWordFaded component creates a word cycling effect with a faded scrolling animation.

PropTypeDefaultDescription
class
String
noneAdditional CSS classes to apply to the component.
words
Array
['One', 'Two', 'Three']An array of words to cycle through.
intervals
Number
500The time in milliseconds between word changes.
duration
Number
0.6The duration of the animation in seconds.
ease
String
'power3.out'The easing function for the animation.
start
Boolean
trueWhether the animation should start immediately.

Best Practices

  1. Choose appropriate intervals and duration values to ensure readability.
  2. Use contrasting colors between the text and background for better visibility.
  3. Consider the context where the component is used, as the animated effect can be visually striking.
  4. For FlipWordFaded, use the start prop to control when the animation begins, especially in dynamic layouts.

Accessibility

While these components add visual appeal, ensure that they don't interfere with the readability or accessibility of the content. Consider providing alternative static text for screen readers if the animated content contains important information.

Implementation Details

Both components use GSAP (GreenSock Animation Platform) for smooth animations.

FlipWordDefault:

  • Uses ScrollToPlugin for scrolling animation
  • Creates a repeating timeline for continuous cycling
  • Calculates distances dynamically based on element positions

FlipWordFaded:

  • Uses a mask image for the fading effect
  • Responds to window resize events to maintain proper animation
  • Allows manual control of animation start/stop

For the full implementation details, please refer to the source code of each component.