🎉 Add a cute click effect to your mouse in your vuepress!
- Document: moefy-vuepress
- Live demo: notev
Want to use it outside of VuePress? Try moefy-canvas!
vuepress version >=v2.0.0
yarn add vuepress-plugin-cursor-effects-v2 -D
# or use npm
npm i vuepress-plugin-cursor-effects-v2 -D
module.exports = {
plugins: ['cursor-effects-v2'],
}
module.exports = {
plugins: [
[
'cursor-effects-v2',
{
size: 2, // size of the particle, default: 2
shape: ['star' | 'circle'], // shape of the particle, default: 'star'
zIndex: 999999999, // z-index property of the canvas, default: 999999999
},
],
],
}