开发者问题收集

Particle.js 未在 ReactJS 网站上显示粒子

2022-04-17
3573

我一直试图在我的投资组合网站上实现 Particles.js,但一直没有成功。这是我在库中运行的以下代码行,以使其运行:

npm i react-tsparticles

我无法将此包添加到我的网站,因此我尝试将其添加到新项目中。我尝试了 2 个不同的教程视频来添加它,但没有成功。这些是视频
https://www.youtube.com/watch?v=F20SxgG5MlM
https://www.youtube.com/watch?v=NO76xNYkNGk&t

这是我的页面现在的样子

我的页面应该是这样的

这是我的粒子配置文件

const particlesConfig = {
  background: {
    color: "#6f32a8"
  },
  fullScreen: {
    enable: true,
    zIndex: -1
  },
  particles: {
    number: {
      value: 80,
      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: 3,
      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: false,
        mode: "repulse"
      },
      onclick: {
        enable: false,
        mode: "push"
      },
      resize: true
    },
    modes: {
      grab: {
        distance: 400,
        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
};
export default particlesConfig;


这是我的背景组件

import React from 'react';
import Particles from "react-tsparticles";
import particlesConfig from '../config/particles-config.js';

const particleBackground = () => {
  return (
    <Particles options={particlesConfig} height="50vh" width='50vw'/>
  )
}

export default particleBackground


这是我的应用组件

import React from "react";
import ParticleBackground from "./components/ParticleBackground";
import "./App.css"
const App = () => {
  return (
  <div className="App">
    <ParticleBackground/>
    <div className="particlesheader">
      <h1>Particle.JS</h1>
    </div>
  </div>
  );
};

export default App;

希望你们能帮助我!谢谢!

2个回答

我遇到了同样的问题。我安装了 tsparticles npm i tsparticles 并添加了此代码

import Particles from "react-tsparticles"
import { loadFull } from "tsparticles"
import { useCallback } from "react"

const Particle = () => {
    const particlesInit = useCallback(async (engine) => {
        //console.log(engine);
        // you can initiate the tsParticles instance (engine) here, adding custom shapes or presets
        // this loads the tsparticles package bundle, it's the easiest method for getting everything ready
        // starting from v2 you can add only the features you need reducing the bundle size
        await loadFull(engine);
    }, []);

    const particlesLoaded = useCallback(async (container) => {
        //console.log(container);
    }, []);
    return (
        <Particles
            id="tsparticles"
            init={particlesInit}
            loaded={particlesLoaded}
            style={{
                width: "100%",
                height: "100%",
                position: "absolute",
                top: "0",
                left: "0"
            }}
            params={{...}}
        />
    );
};

export default Particle

并且成功了。

RAHUL KUMAR
2022-08-17

我认为最新版本的 react-tsparticles 存在问题。
此 codesandbox react-tsparticles 模板 使用版本 1.40.2,但 react-tsparticles 的最新版本是 2.0.6。我在 codesandbox 中卸载了 1.40.2 并安装了 2.0.6,然后我意识到问题出在新版本上。
所以我在我的项目中安装了版本 1.40.2,它现在正在运行。

Heutras
2022-04-17