UNPKG

raindrop-fx

Version:
21 lines (17 loc) 482 B
/** * @typedef {import("../../bundle/index")} */ const canvas = document.querySelector("#canvas"); const rect = canvas.getBoundingClientRect(); canvas.width = rect.width; canvas.height = rect.height; const raindropFx = new RaindropFX({ canvas: canvas, background: "../../assets/img/84765992_p0.jpg", }); window.onresize = () => { const rect = canvas.getBoundingClientRect(); raindropFx.resize(rect.width, rect.height); } raindropFx.start();