emojiwall
Version:
On-screen emotes/emojis nicely animated, bubbling up from the bottom of the screen, to the top of the screen
35 lines (30 loc) • 483 B
CSS
html,
body {
margin: 0;
padding: 0;
}
.container {
position: relative;
width: 100vw;
height: 100vh;
}
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
margin: 0px;
padding: 0px;
}
.particles span.emoji_item {
font-family: "Noto Color Emoji";
}
.particles img.emoji_item {
image-rendering: pixelated;
}
.particles .emoji_item {
position: absolute;
display: block;
}