Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* Pounding heart animation */ | |
| @keyframes pound { | |
| to { transform: scale(1.4); } | |
| } | |
| .heart { | |
| display: inline-block; | |
| font-size: 150px; | |
| color: #e00; |
| /* Pounding heart animation */ | |
| @keyframes pound { | |
| 50% { transform: scale(1.4); } | |
| } | |
| .heart { | |
| display: inline-block; | |
| font-size: 150px; | |
| color: #e00; |
| /* Pounding heart animation */ | |
| @keyframes pound { | |
| from { transform: none; } | |
| 50% { transform: scale(1.4); } | |
| to { transform: none; } | |
| } | |
| .heart { | |
| display: inline-block; |
| /* Pounding heart animation */ | |
| @keyframes pound { | |
| from, to { transform: none; } | |
| 50% { transform: scale(1.4); } | |
| } | |
| .heart { | |
| display: inline-block; | |
| font-size: 150px; |