diff --git a/public/js/app.js b/public/js/app.js index 776228b..c2de5a5 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -36622,7 +36622,7 @@ $(document).ready(function () { //pixel colors minDist = 20, //minimum distance - bounceFactor = 0.7; + bounceFactor = 0.9; // when it increases they are getting more jump height var W = window.innerWidth, H = window.innerHeight; @@ -36666,7 +36666,7 @@ $(document).ready(function () { function drawText() { ctx.clearRect(0, 0, W, H); ctx.fillStyle = "#000000"; - ctx.font = "100px 'Arial', sans-serif"; + ctx.font = "150px 'Arial', sans-serif"; ctx.textAlign = "center"; ctx.fillText(keyword, W / 2, H / 2); } diff --git a/resources/assets/js/home.js b/resources/assets/js/home.js index 78a19b1..42fb691 100644 --- a/resources/assets/js/home.js +++ b/resources/assets/js/home.js @@ -42,7 +42,7 @@ $(document).ready(function(){ hovered = false, colors = ["255,255,255", "255,0,0", "0,0,0"], //pixel colors minDist = 20, //minimum distance - bounceFactor = 0.7; + bounceFactor = 0.9; // when it increases they are getting more jump height var W = window.innerWidth, H = window.innerHeight; @@ -86,7 +86,7 @@ $(document).ready(function(){ function drawText() { ctx.clearRect(0, 0, W, H); ctx.fillStyle = "#000000"; - ctx.font = "100px 'Arial', sans-serif"; + ctx.font = "150px 'Arial', sans-serif"; ctx.textAlign = "center"; ctx.fillText(keyword, W/2, H/2); }