vue 粒子特效

首先介绍一下属性

 // vue-particles的属性:
color: // String类型。默认’#dedede’。粒子颜色。
particleOpacity: //  Number类型。默认0.7。粒子透明度。
particlesNumber: //  Number类型。默认80。粒子数量。
shapeType: //  String类型。默认’circle’。可用的粒子外观类型有:“circle”,“edge”,“triangle”, “polygon”,“star”。
particleSize: //  Number类型。默认80。单个粒子大小。
linesColor: //  String类型。默认’#dedede’。线条颜色。
linesWidth: //  Number类型。默认1。线条宽度。
lineLinked: //  布尔类型。默认true。连接线是否可用。
lineOpacity: //  Number类型。默认0.4。线条透明度。
linesDistance: //  Number类型。默认150。线条距离。
moveSpeed:  // Number类型。默认3。粒子运动速度。
hoverEffect:  // 布尔类型。默认true。是否有hover特效。
hoverMode: //  String类型。默认true。可用的hover模式有: “grab”, “repulse”, “bubble”。
clickEffect: //  布尔类型。默认true。是否有click特效。
clickMode: //  String类型。默认true。可用的click模式有: “push”, “remove”, “repulse”, “bubble”

npm install 进行下载

npm install vue-particles

成功之后

main.js

import VueParticles from 'vue-particles'  
Vue.use(VueParticles)

页面


    

css样式

#particles-js {
  width: 100%;
  height: calc(100% - 100px);
  position: absolute;
}

最后来一张效果图

在这里插入图片描述

你可能感兴趣的:(vue 粒子特效)