Sha256: 00e532ae4946a3c7ad7f195eaab3f7ac12a4c60c6e4e385c0596a299f3c53f37

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

@-webkit-keyframes zoomInUp {
  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 zoomInUp {
  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;
  }
}

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

Version data entries

7 entries across 7 versions & 1 rubygems

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