-
Notifications
You must be signed in to change notification settings - Fork 21
/
404.js
57 lines (56 loc) · 1.16 KB
/
404.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
var particles = {
fpsLimit: 60,
particles: {
number: {
value: 160,
density: {
enable: true,
area: 800
}
},
color: {
value: "#ffffff"
},
shape: {
type: "circle"
},
opacity: {
value: 1,
random: {
enable: true,
minimumValue: 0.1
},
animation: {
enable: true,
speed: 1,
minimumValue: 0,
sync: false
}
},
size: {
value: 3,
random: {
enable: true,
minimumValue: 1
}
},
move: {
enable: true,
speed: 0.17,
direction: "none",
random: true,
straight: false,
outModes: {
default: "out"
},
}
},
interactivity: {
detectsOn: "canvas",
events: {
resize: false
}
},
detectRetina: true
};
tsParticles.load("tsparticles", particles);