-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apply animate.css update #64
Comments
Do you know the last working animate.css version? |
|
It's because in If anyone is searching for a workaround, I've created a component who "upgrade" class names (it still apply class import React from "react";
import "animate.css";
import ScrollAnimation from "react-animate-on-scroll";
function Animated({
children,
animateIn,
animateOut,
...props
}) {
return (
<ScrollAnimation
{...props}
className={`animate__animated ${className ?? ""}`}
animateIn={animateIn && `animate__${animateIn}`}
animateOut={animateOut &&`animate__${animateOut}`}
>
{children}
</ScrollAnimation>
);
}
export default Animated; |
It is because
|
I found that the library is still using older version of animate.css. I would like to add newer version support here.
The text was updated successfully, but these errors were encountered: