From de921801c053d3eb342f585ca98738480cdf3db0 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 20:58:02 -0400 Subject: [PATCH 01/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 8a6adbd..94da65b 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < 50 && trueX - this.x > -50 - && trueY - this.y < 50 && trueY - this.y > -50 +if (trueX - this.x < 10 && trueX - this.x > -10 + && trueY - this.y < 10 && trueY - this.y > -10 ) { if (this.radius < maxRadius) { this.radius += 4; From f7a69e41df2210cee5d6f5470ed1fdb501a9f2eb Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:15:00 -0400 Subject: [PATCH 02/21] Update index.js --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 94da65b..1bb86d3 100644 --- a/index.js +++ b/index.js @@ -154,9 +154,9 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < 10 && trueX - this.x > -10 - && trueY - this.y < 10 && trueY - this.y > -10 - ) { +if (trueX - this.x < this.radius && trueX - this.x > -this.radius + && trueY - this.y < this.radius && trueY - this.y > -this.radius + if (this.radius < maxRadius) { this.radius += 4; } From 46eefa02e7afc0d63a9e73e17a081181a7e38d51 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:19:45 -0400 Subject: [PATCH 03/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 1bb86d3..4fb65c8 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < this.radius && trueX - this.x > -this.radius - && trueY - this.y < this.radius && trueY - this.y > -this.radius +if (trueX - this.x < this.radius+1 || trueX - this.x > -this.radius+1 + && trueY - this.y < this.radius+1 || trueY - this.y > -this.radius+1 if (this.radius < maxRadius) { this.radius += 4; From 84979186456f0dbd135ba171cec1b9b09495bad8 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:22:30 -0400 Subject: [PATCH 04/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 4fb65c8..e04c2b5 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < this.radius+1 || trueX - this.x > -this.radius+1 - && trueY - this.y < this.radius+1 || trueY - this.y > -this.radius+1 +if (abs(trueX - this.x < 7) + && abs(trueY - this.y < 7) if (this.radius < maxRadius) { this.radius += 4; From e636f504493d30d36216c781d12b750d8fd3f983 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:27:03 -0400 Subject: [PATCH 05/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index e04c2b5..c82eec1 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (abs(trueX - this.x < 7) - && abs(trueY - this.y < 7) +if (trueX - this.x < 7 && this.x - trueX > -7 + && trueY - this.y < 7 && this.y - trueY > -7 if (this.radius < maxRadius) { this.radius += 4; From c735baea74b7833116114e969508f19d85ba6e10 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:29:46 -0400 Subject: [PATCH 06/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index c82eec1..70a42b5 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < 7 && this.x - trueX > -7 - && trueY - this.y < 7 && this.y - trueY > -7 +if (trueX - this.x < this.radius && trueX - this.x > -this.radius + && trueY - this.y < this.radius && trueY - this.y > -this.radius) if (this.radius < maxRadius) { this.radius += 4; From a2257fad67e3ac570acdf34717aad04f2896dc56 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:31:01 -0400 Subject: [PATCH 07/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 70a42b5..debdaf4 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < this.radius && trueX - this.x > -this.radius - && trueY - this.y < this.radius && trueY - this.y > -this.radius) +if (trueX - this.x < 10 && trueX - this.x > -10 + && trueY - this.y < 10 && trueY - this.y > -10) if (this.radius < maxRadius) { this.radius += 4; From d58a803bb3957dcfa11f8042aef77cd621b5f055 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:41:14 -0400 Subject: [PATCH 08/21] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index debdaf4..ff28780 100644 --- a/index.js +++ b/index.js @@ -156,7 +156,7 @@ this.y+=this.dy; //when mouse close if (trueX - this.x < 10 && trueX - this.x > -10 && trueY - this.y < 10 && trueY - this.y > -10) - +{ if (this.radius < maxRadius) { this.radius += 4; } From 46de3c8dcb160a15521a592ca15424452ce59d29 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:42:27 -0400 Subject: [PATCH 09/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index ff28780..79603d6 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < 10 && trueX - this.x > -10 - && trueY - this.y < 10 && trueY - this.y > -10) +if (trueX - this.x < this.radius && trueX - this.x > -this.radius + && trueY - this.y < this.radius && trueY - this.y > -this.radius) { if (this.radius < maxRadius) { this.radius += 4; From 037b67d76092b2caad15afac0ca457b04268dd01 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:43:59 -0400 Subject: [PATCH 10/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 79603d6..ae4866c 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < this.radius && trueX - this.x > -this.radius - && trueY - this.y < this.radius && trueY - this.y > -this.radius) +if (trueX - this.x < this.radius+4 && trueX - this.x > -this.radius+4 + && trueY - this.y < this.radius+4 && trueY - this.y > -this.radius+4) { if (this.radius < maxRadius) { this.radius += 4; From ccb31d51fd27bdc912d72ceaf8fd8d94e33603a7 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:45:37 -0400 Subject: [PATCH 11/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index ae4866c..f2994c8 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < this.radius+4 && trueX - this.x > -this.radius+4 - && trueY - this.y < this.radius+4 && trueY - this.y > -this.radius+4) +if (trueX - this.x < 2*(this.radius+4) && trueX - this.x > 2*(-this.radius+4) + && trueY - this.y < 2*(this.radius+4) && trueY - this.y > 2*(-this.radius+4)) { if (this.radius < maxRadius) { this.radius += 4; From 15f98077bd77fdffe1c0f284da13cf7be6d8e826 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:46:42 -0400 Subject: [PATCH 12/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index f2994c8..b368702 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < 2*(this.radius+4) && trueX - this.x > 2*(-this.radius+4) - && trueY - this.y < 2*(this.radius+4) && trueY - this.y > 2*(-this.radius+4)) +if (trueX - this.x < 8 && trueX - this.x > 8 + && trueY - this.y < 8 && trueY - this.y > 8) { if (this.radius < maxRadius) { this.radius += 4; From ea5ec3373d24160b3e73b717cf844f4fcdaf0fb2 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:48:19 -0400 Subject: [PATCH 13/21] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index b368702..f11d50b 100644 --- a/index.js +++ b/index.js @@ -154,8 +154,8 @@ this.y+=this.dy; //interactivity //when mouse close -if (trueX - this.x < 8 && trueX - this.x > 8 - && trueY - this.y < 8 && trueY - this.y > 8) +if (trueX - this.x <8 && trueX - this.x > -8 + && trueY - this.y <8 && trueY - this.y > -8) { if (this.radius < maxRadius) { this.radius += 4; From d823f680e4abf1f856adcb4af3626480a323cddc Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:53:24 -0400 Subject: [PATCH 14/21] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 7d12a10..1173af9 100644 --- a/index.html +++ b/index.html @@ -170,7 +170,7 @@

ABOUT

- + From 5d34582ea878f139ae63f5a8addf92e26a73cbdf Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:54:41 -0400 Subject: [PATCH 15/21] Update index.css --- index.css | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/index.css b/index.css index 1abbdcc..787ec97 100644 --- a/index.css +++ b/index.css @@ -129,7 +129,7 @@ body { #circles { position:absolute; - height:100%; + height:300%; width:100%; } @@ -507,10 +507,7 @@ color: white; } -.fa-instagram { -background: #1565c0; -color: white; -} + .fa-github { @@ -533,4 +530,4 @@ color: white; display: flex; justify-content: space-between; -} \ No newline at end of file +} From b00a003fef532f495f407f703f0d9ec6640a4a6f Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 21:57:41 -0400 Subject: [PATCH 16/21] Update index.css --- index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.css b/index.css index 787ec97..f0d7bcc 100644 --- a/index.css +++ b/index.css @@ -516,7 +516,11 @@ color: white; } .fa-mail{ + border: 3px; + border-style:solid; + border-color:#333333; background: #1565c0; + color: white; } From b2394a9775effe77cc72750c7eaf03d58ebb90e4 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 22:00:51 -0400 Subject: [PATCH 17/21] Update index.css --- index.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.css b/index.css index f0d7bcc..78c2d04 100644 --- a/index.css +++ b/index.css @@ -329,7 +329,7 @@ z-index: -999; display: -webkit-flex; display: flex; -webkit-flex-flow: row; - justify-content: space-around; + justify-content: -around; line-height:30px; } @@ -520,7 +520,7 @@ color: white; border-style:solid; border-color:#333333; background: #1565c0; - + margin-top: -10px; color: white; } @@ -533,5 +533,5 @@ color: white; display: flex; - justify-content: space-between; + justify-content: -between; } From 761aff7798ac06cbc8498a6c8d001c2a968383c4 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 22:02:51 -0400 Subject: [PATCH 18/21] Update index.css --- index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.css b/index.css index 78c2d04..fa5f4e6 100644 --- a/index.css +++ b/index.css @@ -518,9 +518,9 @@ color: white; .fa-mail{ border: 3px; border-style:solid; - border-color:#333333; + border-color:#DDDDDD; background: #1565c0; - margin-top: -10px; + color: white; } From 8df0a085440c4046d0dd14f7d73f3402de1636c2 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 22:11:48 -0400 Subject: [PATCH 19/21] Update index.css --- index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.css b/index.css index fa5f4e6..67b4264 100644 --- a/index.css +++ b/index.css @@ -129,7 +129,7 @@ body { #circles { position:absolute; - height:300%; + height:100%; width:100%; } From b722d371cc422e7dc0fb6ecc96225278ddf23ac3 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 22:18:17 -0400 Subject: [PATCH 20/21] Update index.css --- index.css | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/index.css b/index.css index 67b4264..2965b8f 100644 --- a/index.css +++ b/index.css @@ -516,11 +516,8 @@ color: white; } .fa-mail{ - border: 3px; - border-style:solid; - border-color:#DDDDDD; - background: #1565c0; - + +background: #1565c0; color: white; } From 138bcd0a276f9fe8703493eb576286526eeec903 Mon Sep 17 00:00:00 2001 From: webguy24 <65795729+webguy24@users.noreply.github.com> Date: Fri, 22 May 2020 22:19:55 -0400 Subject: [PATCH 21/21] Update index.css --- index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.css b/index.css index 2965b8f..5a8ac89 100644 --- a/index.css +++ b/index.css @@ -329,7 +329,7 @@ z-index: -999; display: -webkit-flex; display: flex; -webkit-flex-flow: row; - justify-content: -around; + justify-content: space-around; line-height:30px; } @@ -530,5 +530,5 @@ color: white; display: flex; - justify-content: -between; + justify-content: space-between; }