1.0.7 • Published 6 years ago

vue-sreveal v1.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

vue-scroll-reveal license

Vue wrapper for ScrollReveal. Easy scroll animations for web and mobile browsers. library.

Install

# npm
npm install --save vue-sreveal

Use

import VueScrollReveal from 'vue-sreveal';

Vue.use(VueScrollReveal);
<!-- In a component -->
<template>
  <main>
    <section v-scroll-reveal="{ delay: 2000 }">
      <h1>Hello World!</h1>
    </section>
  </main>
</template>