Skip to content

Instantly share code, notes, and snippets.

View dbpoo's full-sized avatar
🎮
Focusing

WEI WEI dbpoo

🎮
Focusing
View GitHub Profile
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 07:21 — forked from LeaVerou/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
to { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 07:12 — forked from LeaVerou/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
50% { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 07:01 — forked from anonymous/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
from { transform: none; }
50% { transform: scale(1.4); }
to { transform: none; }
}
.heart {
display: inline-block;
@dbpoo
dbpoo / dabblet.css
Created December 13, 2012 05:57 — forked from LeaVerou/dabblet.css
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
from, to { transform: none; }
50% { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;