Skip to content

Instantly share code, notes, and snippets.

@rhostem
Created November 20, 2016 14:13
Show Gist options
  • Save rhostem/8540ee344a041fca888d5b5f35f900cb to your computer and use it in GitHub Desktop.
Save rhostem/8540ee344a041fca888d5b5f35f900cb to your computer and use it in GitHub Desktop.
bounce.css - bounce 효과 애니메이션
@keyframes bounce {
0% { top: 0; }
25% { top: -10px; transform: scale(1.1); }
40% { top: 0; transform: scale(1); }
100% { top: 0; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment