module.exports={plugins:[{src:'~/plugins/vue-scroll-reveal',ssr:false}],} While the code within this component (tserkov/vue-scroll-reveal) isMIT-licensed, ScrollReveal isGPL3-licensed, and requires the purchase of aCommercial Licenseif you want to use it in a closed-source project. ...
// main.js import VueScrollReveal from 'vue-scroll-reveal' Vue.use(VueScrollReveal, { class: 'v-scroll-reveal', duration: 1500, scale: 0.4, distance: '700px', reset: true, mobile: false, opatity: 0, }) <template> {{ infos.h2 }} {{ infos.h3 }} ...
Sign in Sign up tserkov/vue-scroll-revealPublic Notifications Fork17 Star158 New issue jetriiopened this issueon Sep 25, 2018· 3 comments I'm not a lawyer, but I chose the MIT license because my code requires ScrollReveal as a side-loaded dependency, rather than bundling or modifying it ...
Package vue-scroll-reveal failed to load. There might be a problem with your internet connection. Try refreshing the page a few times. If the problem persists, file an issue onGitHub.
Package vue-scroll-reveal failed to load. There might be a problem with your internet connection. Try refreshing the page a few times. If the problem persists, file an issue on GitHub.Maintained by jsDelivr team and contributors Founded by Dmitriy Akulov Sign up to our newsletter Subscribe ...
It seems that when scrolling is not smooth, all content on the page will already be visible when you scroll down to it. If I scroll down a page, it might work fine initially, but then the bug is triggered, and all the remaining elements become visible. Usually this is only triggered ...
A Vue directive to wrap @jlmake's excellent ScrollReveal library. - Pull requests · vv13/vue-scroll-reveal
// In main.jsimportVueScrollRevealfrom'vue-scroll-reveal';Vue.use(VueScrollReveal);// You can also pass in default optionsVue.use(VueScrollReveal,{duration:800,scale:1,distance:'10px',mobile:false}); <!-- In a component --><template>Scroll down!Tada!Slightly late tada!</template>section...