Skip to content

yannletouzey/wave-text-animation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wave Text Animation

Wave Text Animation

npm i wave-text-animation

import package

import waveTextAnimation from 'wave-text-animation';

calling waveTextAnimation function from a package with text to animate

waveTextAnimation('hello world');

Add this container in html - div or p or whatever you want but with id="text-container" class="text-container"

<div id="text-container" class="text-container"></div>

Place this CSS in a file

.pTwo span {
  transform: translateY(100%) rotateX(-90deg);
}
.text-container:hover .pOne span {
  transform: translateY(-100%) rotateX(-90deg);
}
.text-container:hover .pTwo span {
  transform: translateY(0%) rotateX(0deg);
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published