>  기사  >  웹 프론트엔드  >  vue3에서 입자 특수 효과를 사용하는 문제를 해결하는 방법

vue3에서 입자 특수 효과를 사용하는 문제를 해결하는 방법

WBOY
WBOY앞으로
2023-05-10 10:37:152707검색

vue-particles는 내부적으로 require API를 사용합니다. Vue3은 require를 완전히 포기하고 commonJSes6을 수용했습니다. 한 곳이 변경되면 다른 곳에서 문제가 발생합니다.

1단계: 입자.js 소개

npm i particles.js
or
yarn add particles.js

2단계: node_modules에서 입자.js 찾기

제거:

vue3에서 입자 특수 효과를 사용하는 문제를 해결하는 방법

제거한 후 npm uninstallarticulate.js를 사용할 수 있습니다. 종속성

3단계: 프로젝트 구성 요소 아래에 입자 디렉터리를 만듭니다

찾은 입자.js를 여기에 넣고 동일한 수준 디렉터리에 index.vue 및 입자.json을 만듭니다.

vue3에서 입자 특수 효과를 사용하는 문제를 해결하는 방법

제4 단계: index.vue 다음 내용을 작성합니다

<template>
  <div class="particles-js-box">
    <div id="particles-js"></div>
  </div>
</template>
<script>
/* eslint-disable */
import particlesJs from "./particles.js";
import particlesConfig from "./particles.json";
export default {
  data() {
    return {};
  },
  mounted() {
    this.init();
  },
  methods: {
    init() {
      particlesJS("particles-js", particlesConfig);
      document.body.style.overflow = "hidden";
    },
  },
};
</script>
<style scoped>
.particles-js-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#particles-js {
  background-color: #2d3a4b;
  width: 100%;
  height: 100%;
}
</style>

5단계: 입자.json 다음 내용을 작성합니다

{
    "particles": {
        "number": {
            "value": 60,
            "density": {
                "enable": true,
                "value_area": 800
            }
        },
        "color": {
            "value": "#ffffff"
        },
        "shape": {
            "type": "circle",
            "stroke": {
                "width": 0,
                "color": "#000000"
            },
            "polygon": {
                "nb_sides": 5
            },
            "image": {
                "src": "img/github.svg",
                "width": 100,
                "height": 100
            }
        },
        "opacity": {
            "value": 0.5,
            "random": false,
            "anim": {
                "enable": false,
                "speed": 1,
                "opacity_min": 0.1,
                "sync": false
            }
        },
        "size": {
            "value": 3,
            "random": true,
            "anim": {
                "enable": false,
                "speed": 40,
                "size_min": 0.1,
                "sync": false
            }
        },
        "line_linked": {
            "enable": true,
            "distance": 150,
            "color": "#ffffff",
            "opacity": 0.4,
            "width": 1
        },
        "move": {
            "enable": true,
            "speed": 4,
            "direction": "none",
            "random": false,
            "straight": false,
            "out_mode": "out",
            "bounce": false,
            "attract": {
                "enable": false,
                "rotateX": 100,
                "rotateY": 1200
            }
        }
    },
    "interactivity": {
        "detect_on": "Window",
        "events": {
            "onhover": {
                "enable": true,
                "mode": "grab"
            },
            "onclick": {
                "enable": true,
                "mode": "push"
            },
            "resize": true
        },
        "modes": {
            "grab": {
                "distance": 140,
                "line_linked": {
                    "opacity": 1
                }
            },
            "bubble": {
                "distance": 400,
                "size": 40,
                "duration": 2,
                "opacity": 8,
                "speed": 3
            },
            "repulse": {
                "distance": 200,
                "duration": 0.4
            },
            "push": {
                "particles_nb": 4
            },
            "remove": {
                "particles_nb": 2
            }
        }
    },
    "retina_detect": true
}

6단계: 입자.js

1 수정, 1416줄 - 1427줄은 다음으로 대체됩니다.

Object.deepExtend = function f(destination, source) {
  for (var property in source) {
    if (source[property] && source[property].constructor &&
     source[property].constructor === Object) {
      destination[property] = destination[property] || {};
      f(destination[property], source[property])
    } else {
      destination[property] = source[property];
    }
  }
  return destination;
};

2. 마지막 줄을 추가하세요:

export default window.particlesJS

7단계: 여기에 index.vue를 소개하세요

<template>
  <div>
    <particles></particles>
  </div>
</template>
<script>
import Particles from &#39;@/components/particles/index.vue&#39;
export default {
  components: {
    "particles":Particles
  }
};
</script>

위 내용은 vue3에서 입자 특수 효과를 사용하는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제