loonywizard / js-confetti

JS Confetti library that supports emojis πŸ¦„ πŸŽ‰ ⚑️
https://loonywizard.github.io/js-confetti/
MIT License
1.13k stars 48 forks source link

emojiSize not working #64

Open dcts opened 8 months ago

dcts commented 8 months ago

I tried to adapt the size of the emojis, but with no success. Both codesnippets have the same result. Is that expected or a bug?

new JSConfetti().addConfetti({
    confettiNumber: 250,
    emojis: ['πŸ—ΊοΈ', '🐣', 'πŸ₯³', 'πŸ“', '✨'],
    emojiSize: 1,
});

// Same effect although size increased
new JSConfetti().addConfetti({
    confettiNumber: 250,
    emojis: ['πŸ—ΊοΈ', '🐣', 'πŸ₯³', 'πŸ“', '✨'],
    emojiSize: 100,
});