Sha256: 914b2f184c0567c6e1936c038e672cbd6dace7eed72e984f14976034f2b6f205

Contents?: true

Size: 549 Bytes

Versions: 3

Compression:

Stored size: 549 Bytes

Contents

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

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

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

Version data entries

3 entries across 3 versions & 1 rubygems

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