| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <vue-particles
- color="#6495ED"
- :particleOpacity="0.8"
- :particlesNumber="70"
- shapeType="circle"
- :particleSize="4"
- linesColor="#6495ED"
- :linesWidth="1"
- :lineLinked="true"
- :lineOpacity="0.6"
- :linesDistance="150"
- :moveSpeed="3"
- :hoverEffect="true"
- hoverMode="grab"
- :clickEffect="true"
- clickMode="push"
- >
- </vue-particles>
- </template>
- <script>
- import Vue from "vue";
- import VueParticles from "vue-particles";
- Vue.use(VueParticles);
- export default {
- name: "particles"
- };
- </script>
- <style>
- #particles-js {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1000;
- width: 100%;
- height: 100%;
- }
- </style>
|