forked from 1hanzla100/developer-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparticlesConfig.js
More file actions
44 lines (44 loc) · 800 Bytes
/
particlesConfig.js
File metadata and controls
44 lines (44 loc) · 800 Bytes
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
// https://github.com/matteobruni/tsparticles/blob/main/components/react/README.md
export const particlesOptions = {
// fullScreen: { enable: false, zIndex: 0 },
fpsLimit: 120,
particles: {
color: {
value: '#ffffff',
},
links: {
color: '#ffffff',
distance: 150,
enable: true,
opacity: 0.5,
width: 1,
},
collisions: {
enable: true,
},
move: {
directions: 'none',
enable: true,
random: false,
speed: 3,
straight: false,
},
number: {
density: {
enable: true,
area: 800,
},
value: 30,
},
opacity: {
value: 0.5,
},
shape: {
type: 'circle',
},
size: {
value: { min: 1, max: 3 },
},
},
detectRetina: true,
};