Sha256: 3a5e1e664d74e4a90476fbdb18f4a6abdbb5fba7e0d323c37c96b617ef8289b4

Contents?: true

Size: 561 Bytes

Versions: 3

Compression:

Stored size: 561 Bytes

Contents

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

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

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

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

  100% {
    transform: perspective(400px);
  }
}

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubyneat_dashboard-0.4.0.alpha.6 bower_components/animate.css/source/flippers/flipInX.css
rubyneat_dashboard-0.4.0.alpha.4.pre.1 bower_components/animate.css/source/flippers/flipInX.css
rubyneat_dashboard-0.4.0.alpha.4 bower_components/animate.css/source/flippers/flipInX.css