Vue wrapper for ScrollReveal. Easy scroll animations for web and mobile browsers.
# npm
npm install --save vue-sreveal
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>