Skip to content

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

Notifications You must be signed in to change notification settings

Declan-Watts/vue-wow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Vue-wow

Features

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

Usage

# install
$ npm install  v-wow
<div 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;
}

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%