Sha256: 88ffdbe12627fc021464ea93e265238650e85365edb40270b27eab12a844f5f0

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

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

Version data entries

7 entries across 7 versions & 1 rubygems

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