Answer the question
In order to leave comments, you need to log in
Animations on wow.js - is there a way to add custom CSS3 animations, not from animate.css?
The project has already included wow.js and animate.css for scroll animations.
Is there a way to connect your animation through wow.js - for example by adding it to the animate.css file? Or just by specifying the class name in wow.js by analogy?
Those. use in similar design
<div class="wow MY-OWN-ANIMATION" data-wow-delay="1.0s">
Answer the question
In order to leave comments, you need to log in
You can, you just need to create a class with your own animation, for example:
@keyframes myAnimation {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.myAnimation {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question