-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathm3.js
92 lines (87 loc) · 1.73 KB
/
m3.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
$(function() {
function initFullPage() {
const fullPageInstance = new fullpage('#fullpage-wrapper', {
licenseKey: 'gplv3-license',
scrollBar: false,
scrollingSpeed: 1000,
navigation: true,
navigationPosition: 'right',
navigationTooltips: ['Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter', 'Saturn', 'Uranus', 'Neptune', 'Pluto', 'Credits'],
// showActiveTooltip:true,
css3: true,
autoScrolling: true,
// Custom selectors
sectionSelector: '.js-main-slide',
licenseKey: '',
normalScrollElements: '.fancybox-container',
});
}
initFullPage();
});
// Particle js stars
particlesJS("particle-js", {
"particles": {
"number": {
"value": 200,
"density": {
"enable": true,
"value_area": 100
}
},
"color": {
"value": ["#fff", "#eee"],
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000",
}
},
"opacity": {
"value": 0.8,
"random": true,
"anim": {
"enable": true,
"speed": 1,
"opacity_min": 0.1,
"sync": false,
}
},
"size": {
"value": 1.5,
"random": true,
"anim": {
"enable": true,
"speed": 1,
"size_min": 0.2,
"sync": false
}
},
"line_linked": {
"enable": false,
"distance": 100,
"color": "#000d1f",
"opacity": 1,
"width": 0.5
},
"move": {
"enable": false,
"speed": 3,
"direction": "none",
"random": true,
},
"interactivity": {
"detect_on": "none",
"events": {
"onhover": {
"enable": false,
},
"onclick": {
"enable": false,
}
}
},
"retina_detect": true
}
});