-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParticleBackground.js
133 lines (127 loc) · 3.54 KB
/
ParticleBackground.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//Importing Particles from @tsparticles/react
import Particles, { initParticlesEngine } from "@tsparticles/react";
import { useEffect, useMemo, useState } from "react";
import { loadSlim } from "@tsparticles/slim";
const ParticlesComponent = (props) => {
const [init, setInit] = useState(false);
useEffect(() => {
// Initialize particles engine when component mounts
initParticlesEngine(async (engine) => {
// Load slim configuration for particles engine
await loadSlim(engine);
}).then(() => {
// Set initialization flag to true once particles engine is initialized
setInit(true);
});
}, []);
// Function to handle when particles are loaded into the container
const particlesLoaded = (container) => {
};
// Memoized options for particles configuration
const options = useMemo(
() => ({
// Limit frames per second for particle rendering
fpsLimit: 120,
fullScreen:{
enable:false,
zindex:0
},
interactivity: {
events: {
onClick: {
enable: true,
// Interaction mode on click
mode: "repulse",
},
onHover: {
enable: true,
// Interaction mode on hover
mode: "repulse",
},
},
modes: {
repulse: {
// Distance of repulsion effect
distance: 200,
// Duration of repulsion effect
duration: 0.4,
},
grab: {
// Distance of grab interaction
distance: 150,
},
},
},
particles: {
number: {
// Number of particles
value: 100,
density: {
enable: true,
// Area within which particles are density distributed
value_area: 800,
},
},
color: {
// Particle color
value: "#FFFFFF",
},
shape: {
// Particle shape type
type: "triangle",
stroke: {
width: 0,
// Stroke color
color: "#000000",
},
polygon: {
// Number of sides for polygon shape
nb_sides: 12,
},
},
links: {
// Color of links between particles
color: "#FFFFFF",
// Distance of links between particles
distance: 180,
// Enable linking between particles
enable: true,
// Opacity of links
opacity: 0.8,
// Width of links
width: 1,
},
move: {
// Movement direction of particles
direction: "none",
// Enable particle movement
enable: true,
outModes: {
// Out mode for particles when they move out of canvas
default: "bounce",
},
// Random movement direction
random: true,
// Speed of particle movement
speed: 5,
// Allow straight particle movement
straight: false,
},
opacity: {
// Opacity value of particles
value: 0.7,
},
size: {
// Size range of particles
value: { min: 1, max: 3 },
},
},
// Detect retina displays
detectRetina: true,
}),
[]
);
// Render Particles component with specified ID, initialization callback, and options
return <Particles id={props.id} init={particlesLoaded} options={options} />;
};
export default ParticlesComponent;