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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>Document</title> </head> <body style="background: #000;width: 100%;height: 100%"> <div style="height:500px" id="smarts"></div> </body> <script> circleMagic(); function circleMagic(options) { let width; let height; let canvas; let ctx; let animateHeader = true; const circles = [];
const settings = options || { color: "rgba(255,255,255,.5)", radius: 10, density: 0.3, clearOffset: 0.2, };
const container = document.getElementById("smarts"); initContainer(); addListeners();
function initContainer() { width = container.offsetWidth; height = container.offsetHeight - 120;
initCanvas(); canvas = document.getElementById("homeTopCanvas"); canvas.width = width; canvas.height = height; canvas.style.position = "absolute"; canvas.style.left = "0"; canvas.style.bottom = "0"; ctx = canvas.getContext("2d");
for (let x = 0; x < width * settings.density; x++) { const c = new Circle(); circles.push(c); } animate(); }
function initCanvas() { const canvasElement = document.createElement("canvas"); canvasElement.id = "homeTopCanvas"; canvasElement.style.pointerEvents = "none"; container.appendChild(canvasElement); canvasElement.parentElement.style.overflow = "hidden"; }
function addListeners() { window.addEventListener("scroll", scrollCheck, false); window.addEventListener("resize", resize, false); }
function scrollCheck() { if (document.body.scrollTop > height) { animateHeader = false; } else { animateHeader = true; } }
function resize() { width = container.clientWidth; height = container.clientHeight; container.height = height + "px"; canvas.width = width; canvas.height = height; }
function animate() { if (animateHeader) { ctx.clearRect(0, 0, width, height); for (const i in circles) { circles[i].draw(); } } requestAnimationFrame(animate); }
function randomColor() { const r = Math.floor(Math.random() * 255); const g = Math.floor(Math.random() * 255); const b = Math.floor(Math.random() * 255); const alpha = Math.random().toPrecision(2); return "rgba(" + r + ", " + g + ", " + b + ", " + alpha + ")"; }
function Circle() { const that = this;
(function () { that.pos = {}; init(); })();
function init() { that.pos.x = Math.random() * width; that.pos.y = height + Math.random() * 100; that.alpha = 0.1 + Math.random() * settings.clearOffset; that.scale = 0.1 + Math.random() * 0.3; that.speed = Math.random(); if (settings.color === "random") { that.color = randomColor(); } else { that.color = settings.color; } }
this.draw = function () { if (that.alpha <= 0) { init(); } that.pos.y -= that.speed; that.alpha -= 0.0005; ctx.beginPath(); ctx.arc( that.pos.x, that.pos.y, that.scale * settings.radius, 0, 2 * Math.PI, false ); ctx.fillStyle = that.color; ctx.fill(); ctx.closePath(); }; } } </script> </html>
|