vue-particles는 내부적으로 require API를 사용합니다. Vue3은 require를 완전히 포기하고 commonJSes6을 수용했습니다. 한 곳이 변경되면 다른 곳에서 문제가 발생합니다.
npm i particles.js or yarn add particles.js
제거:
제거한 후 npm uninstallarticulate.js를 사용할 수 있습니다. 종속성
찾은 입자.js를 여기에 넣고 동일한 수준 디렉터리에 index.vue 및 입자.json을 만듭니다.
<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>
{ "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 }
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
<template> <div> <particles></particles> </div> </template>
<script> import Particles from '@/components/particles/index.vue' export default { components: { "particles":Particles } }; </script>
위 내용은 vue3에서 입자 특수 효과를 사용하는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!