Skip to content

Commit

Permalink
modded graphics a bit + tidy links
Browse files Browse the repository at this point in the history
  • Loading branch information
Core310 committed Sep 10, 2024
1 parent 2962b35 commit 797d88a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
<div id="intro">
<h2 style="font-family: 'Syncopate', sans-serif; font-weight: 10;">Arika Khor
</h2>
<a href="https://github.com/#/Core310" style="color: white;"><i class="fab fa-github fa-3x"></i></a>
<a href="https://github.com/#/Core310" target="_blank" rel="noopener noreferrer" style="color: white;"><i class="fab fa-github fa-3x"></i></a>
&nbsp
<a href="www.linkedin.com/in/arika-khor-901b311b9" style="color: white;"><i class="fab fa-linkedin fa-3x"></i></a>
<a href="www.linkedin.com/in/arika-khor-901b311b9" target="_blank" rel="noopener noreferrer" style="color: white;"><i class="fab fa-linkedin fa-3x"></i></a>
&nbsp
<a href="RESM" style="color: white;"><i class="fas fa-file fa-3x"></i></a>
&nbsp;
<a href="mailto:[email protected]" style="color: white;"><i class="fas fa-envelope fa-3x"></i></a>
<a href="RESM" target="_blank" rel="noopener noreferrer" style="color: white;"><i class="fas fa-file fa-3x"></i></a>
&nbsp
<a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer" style="color: white;"><i class="fas fa-envelope fa-3x"></i></a>
</div>


Expand Down
5 changes: 4 additions & 1 deletion particles/particles.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var pJS = function (tag_id, params) {
type: 'circle',
stroke: {
width: 0,
color: '#ff0000'
color: '#11fff7'
},
polygon: {
nb_sides: 5
Expand Down Expand Up @@ -598,6 +598,9 @@ var pJS = function (tag_id, params) {
pJS.fn.modes.repulseParticle(p);
}




/* interaction auto between particles */
if (pJS.particles.line_linked.enable || pJS.particles.move.attract.enable) {
for (var j = i + 1; j < pJS.particles.array.length; j++) {
Expand Down
30 changes: 15 additions & 15 deletions particles/particles.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
"enable": true,
"speed": 2,
"direction": "none",
"random": false,
"random": true,
"straight": false,
"out_mode": "out",
"bounce": false,
"out_mode": "bounce",
"bounce": true,
"attract": {
"enable": false,
"rotateX": 600,
Expand All @@ -72,31 +72,31 @@
"events": {
"onhover": {
"enable": true,
"mode": "repulse"
"mode": "grab"
},
"onclick": {
"enable": false,
"mode": "push"
"enable": true,
"mode": "repulse"
},
"resize": true
},
"modes": {
"grab": {
"distance": 755.2447552447553,
"distance": 280,
"line_linked": {
"opacity": 0
"opacity": 1
}
},
"bubble": {
"distance": 287.7122877122877,
"size": 287.7122877122877,
"duration": 0.959040959040959,
"opacity": 0,
"speed": 3
"distance": 100,
"size": 10,
"duration": 0.2,
"opacity": 0.3,
"speed": 1
},
"repulse": {
"distance": 200,
"duration": 0.4
"distance": 800,
"duration": 0.1
},
"push": {
"particles_nb": 4
Expand Down

0 comments on commit 797d88a

Please sign in to comment.