Sha256: 84b18090c179d3672c3592124151468e934cf47db4737d5e2e68c81e40b2d25f

Contents?: true

Size: 1.1 KB

Versions: 7

Compression:

Stored size: 1.1 KB

Contents

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
railsstrap-4.0.0.beta3 vendor/assets/stylesheets/animate/zoom/zoomInDown.scss
railsstrap-4.0.0.beta2 vendor/assets/stylesheets/animate/zoom/zoomInDown.scss
railsstrap-3.3.4 vendor/assets/stylesheets/animate/zoom/zoomInDown.less
railsstrap-3.3.2 vendor/assets/stylesheets/animate/zoom/zoomInDown.less
railsstrap-3.3.1 vendor/assets/stylesheets/animate/zoom/zoomInDown.less
railsstrap-3.3.0 vendor/assets/stylesheets/animate/zoom/zoomInDown.less
railsstrap-3.2.0.3 vendor/assets/stylesheets/animate/zoom/zoomInDown.less