@sarthak03dot/romantic-animations
Version:
Romantic animations like hearts, sparkles, trails
13 lines (12 loc) • 435 B
JavaScript
export function initCanvas(containerId) {
const container = document.getElementById(containerId);
const canvas = document.createElement('canvas');
canvas.width = container.offsetWidth;
canvas.height = container.offsetHeight;
canvas.style.position = 'absolute';
canvas.style.top = 0;
canvas.style.left = 0;
canvas.style.pointerEvents = 'none';
container.appendChild(canvas);
return canvas;
}