-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
90 lines (88 loc) · 1.93 KB
/
script.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
particlesJS("particles", {
particles: {
number: {
value: 100,
density: {
enable: true,
value_area: 800
}
},
color: {
value: "#ffffff"
},
shape: {
type: "circle",
stroke: {
width: 0,
color: "#000000"
}
},
opacity: {
value: 0.8,
random: true,
animation: {
enable: true,
speed: 1,
opacity_min: 0,
sync: false
}
},
size: {
value: 3,
random: true
},
line_linked: {
enable: true,
distance: 150,
color: "#ffffff",
opacity: 0.4,
width: 1
},
move: {
enable: true,
speed: 2,
direction: "none",
random: true,
straight: false,
out_mode: "out",
bounce: false,
}
},
interactivity: {
detectsOn: "canvas",
events: {
onHover: {
enable: true,
mode: "push"
},
onClick: {
enable: true,
mode: "push"
},
resize: true
},
modes: {
repulse: {
distance: 100,
duration: 0.4
},
push: {
particles_nb: 4
}
}
},
retina_detect: true
});
function scrollToTop() {
window.scrollTo({
top: 0,
});
}
window.addEventListener('scroll', function () {
var scrollTopButton = document.querySelector('.scroll-top');
if (this.window.pageYOffset > 200) {
scrollTopButton.style.display = 'block';
} else {
scrollTopButton.style.display = 'none';
}
});