Change Animation Type to flipInX

To Change the Animation type for floating styles to “flipInX”

Navigate to Animation Settings ( Click -> Customize Styles – Animations )

Change “Animation Class name”, “Animation CSS code”.

Animation Class name: flipInX

Animation code :

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

See here, how it looks like.


flipInX Animation code form Animate.css 

It easy to select animation type from this Animate.css Demo, For performance reason, Instead of we adding a bundle with a lot of animations types,  we added a way to add only selected animation type.