index.vue 678 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <vue-particles
  3. color="#6495ED"
  4. :particleOpacity="0.8"
  5. :particlesNumber="70"
  6. shapeType="circle"
  7. :particleSize="4"
  8. linesColor="#6495ED"
  9. :linesWidth="1"
  10. :lineLinked="true"
  11. :lineOpacity="0.6"
  12. :linesDistance="150"
  13. :moveSpeed="3"
  14. :hoverEffect="true"
  15. hoverMode="grab"
  16. :clickEffect="true"
  17. clickMode="push"
  18. >
  19. </vue-particles>
  20. </template>
  21. <script>
  22. import Vue from "vue";
  23. import VueParticles from "vue-particles";
  24. Vue.use(VueParticles);
  25. export default {
  26. name: "particles"
  27. };
  28. </script>
  29. <style>
  30. #particles-js {
  31. position: fixed;
  32. top: 0;
  33. left: 0;
  34. z-index: 1000;
  35. width: 100%;
  36. height: 100%;
  37. }
  38. </style>