B
B
bormor2018-04-18 16:42:35
css
bormor, 2018-04-18 16:42:35

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

2 answer(s)
A
Alexander, 2018-05-15
@smoyke

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;
  }

C
Cyril, 2018-04-18
@cyril_b

yes, the animate.css library works on standard CSS3 animations

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question