Pulse Button

쉬움

펄스 애니메이션이 있는 버튼

#animation#css-only

라이브 데모

코드

buttons.css
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}