📝 代码查看
2
查看次数
2025-11-30
创建时间
2025-11-30
最后更新
<div class="heart">♥</div>
/* Pounding heart animation */
@keyframes pound {
to { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
animation: pound .25s infinite alternate;
transform-origin: center;
}
body { text-align: center; }
暂无JavaScript代码