
图标引入
<img class="icon" src="heart.svg" alt="" srcset="">
CSS代码
<style>
.icon {
animation:
bpm 1s linear,
pulse 0.75s 1s linear infinite;
}
@keyframes pulse {
from,
75%,
to {
transform: scale(1);
}
25% {
transform: scale(0.9);
}
50% {
transform: scale(1.2);
}
}
@keyframes bpm {
from {
transform: scale(0);
}
37.5% {
transform: scale(1.2);
}
75%,
to {
transform: scale(1);
}
}
</style>

博客主要提及图标引入相关内容,并给出了CSS代码,涉及前端开发领域。
1万+

被折叠的 条评论
为什么被折叠?



