YOUR CART
- No products in the cart.
Subtotal:
$0.00
BEST SELLING PRODUCTS
const canvas = document.getElementById(‘sparkleCanvas’);
const ctx = canvas.getContext(‘2d’);
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
const sparkles = [];
const sparkleCount = 30;
for (let i = 0; i {
ctx.beginPath();
ctx.arc(s.x, s.y, s.size, 0, Math.PI * 2);
ctx.fillStyle = ‘rgba(255, 255, 255, 0.8)’;
ctx.fill();
s.y -= s.speed;
if (s.y {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
});
Showing all 6 results