# 光标点击爆炸效果
# 效果
# 安装
yarn add vuepress-plugin-cursor-effects -D
# or use npm
npm i vuepress-plugin-cursor-effects -D
# 使用
在
config.js
配置文件里:
module.exports = {
plugins: ['cursor-effects'],
}
或者
module.exports = {
plugins: [
[
'cursor-effects',
{
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
},
],
],
}
← 自定义访问域名 标签页自定义-进入离开问候 →