Skip to content

Basic Demos

emojiBlast

A single blast of emojis.

emojiBlast();

Large

emojiBlast with extra large emojis.

emojiBlast({
physics: {
fontSize: { max: 74, min: 64 }
}
});

Always Blue

emojiBlast with only one type of emoji per explosion.

emojiBlast({
emojis: ["🥶", "🧞‍♂️", "🦋", "🦕", "🐟", "🐬", "🐳", "🐋"]
});

Only One

emojiBlast with only one type of emoji per explosion.

emojiBlast({
uniqueness: 1
});

Lots of Emojis

emojiBlast with a random number of emojis per blast between 100-200.

emojiBlast({
emojiCount: () => Math.random() * 100 + 100
});

Set Position

emojiBlast that only happens at a set position on the page

emojiBlast({
position: {
x: innerWidth / 2,
y: innerHeight / 2
}
});