Sha256: 5102f4a99201fe0f00a5e3cf91754557f22c84d0b699dc4d198b0de1ec24524a

Contents?: true

Size: 476 Bytes

Versions: 3

Compression:

Stored size: 476 Bytes

Contents

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

Version data entries

3 entries across 3 versions & 1 rubygems

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