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

21 lines
307 B
CSS
Raw Normal View History

2024-04-17 21:50:00 +00:00
@keyframes bang {
from {
transform: translate3d(0,0,0);
opacity: 1;
}
}
.click-confetti {
position: fixed;
animation: bang 700ms ease-out forwards;
2024-04-28 12:35:44 +00:00
pointer-events: none;
2024-04-17 21:50:00 +00:00
}
.click-confetti > i {
position: fixed;
2024-04-17 21:50:00 +00:00
width: 3px;
height: 8px;
animation: bang 700ms ease-out forwards;
opacity: 0;
2024-04-17 21:50:00 +00:00
}