1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
@keyframes ping { 0% { transform: scale(.2); opacity: .8 } 80% { transform: scale(1.2); opacity: 0 } to { transform: scale(2.2); opacity: 0 } } .GRIMOIRE_CSS_ANIMATION { animation-name: ping; }