gpt4 book ai didi

javascript - Particles Js Canvas 显示在页面的最底部

转载 作者:行者123 更新时间:2023-12-03 00:16:54 28 4
gpt4 key购买 nike

我在我的网站上使用 Vue 2 和 Laravel,并且希望集成 Particles Js,但是无论如何,粒子 Canvas 都会显示在页面底部。根据我的理解,它应该显示在 ID 为 keywords-js 的 div 内部,但事实并非如此,即使所述 div 不在页面中,它仍然显示在页面底部。

我尝试了不同的 css 类来尝试移动 Canvas ,但似乎没有任何效果。我还尝试对 Canvas 进行硬编码,使其位于我想要的位置,但效果并非如此。


export default {
layout: 'basic',
mounted() {
console.log('mounted');

particlesJS('app', {

"particles": {
"number": {
"value": 100,
"density": {
"enable": true,
"value_area": 500
}
},
"color": {
"value": "#5802ff"
},
"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": "#9054ff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 2,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"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
});
},

这就是我使用 vue 2 实现 Particles Js 的方式

我添加<div id="particles-js"></div>

它里面应该有 Canvas ,但它没有,只是将它放在定义 vue 范围的应用程序 div 的底部

我希望能够将其放在页面顶部的背景

最佳答案

查看documentation ParticlesJS 的 articles.load 的第一个参数是 DOM id。在他们的示例中,它是 articles-js ,它是 Canvas 渲染的 DOM 元素的 id,正如您在问题中正确指出的那样。

但是,在您发布的代码示例中,您编写了 articlesJS('app', ... ) ,这解释了为什么 Canvas 被附加到 app 元素。只需将 app 更改为您想要在其中渲染 Canvas 的元素的 id,它就应该可以正常工作。

关于javascript - Particles Js Canvas 显示在页面的最底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54497109/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com