1.2.1 • Published 6 years ago

v-wow-refunder v1.2.1

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

Vue-wow

Features

  • Ispire by wow.js Reveal CSS animation as you scroll down a page

Usage

# install
$ npm install  v-wow
<div class="class="holder fadeInUp"" v-wow="{ 'animation-name': 'fadeInUp','animation-duration': '1s'}"></div>
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    -ms-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-timing-function: ease-out;
}