forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/css/click_confetti.css

21 lines
307 B
CSS

@keyframes bang {
from {
transform: translate3d(0,0,0);
opacity: 1;
}
}
.click-confetti {
position: fixed;
animation: bang 700ms ease-out forwards;
pointer-events: none;
}
.click-confetti > i {
position: fixed;
width: 3px;
height: 8px;
animation: bang 700ms ease-out forwards;
opacity: 0;
}