vue-sreveal
v1.0.7
Published
Vue wrapper for ScrollReveal JS. Easy scroll animations for web and mobile browsers.
Downloads
2
Maintainers
Readme
vue-scroll-reveal
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>