animation-text-icon
v1.2.0
Published
package for animate text and icon
Downloads
1,839
Maintainers
Readme
Usage
import AnimationPackage from "animation-text-icon";
function App() {
return (
<AnimationPackage
text="Animate"
icon={false} //add icon to animate icon
direction='normal'
fillmode='forwards'
animationDuration='2s'
delay='0.2s'
initialAnimationValue={{
color: "black",
rotate: "40deg",
scale: "2",
Xposition: "100vw",
Yposition: "100vw",
}}
finalAnimationValue={{
color: "black",
rotate: "0deg",
scale: "1",
Xposition: "0px",
Yposition: "0px",
}}
/>
);
}
export default App;
