css心跳动画

图标引入

复制代码
<img class="icon" src="heart.svg" alt="" srcset="">

CSS代码

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>
相关推荐
雪隐2 分钟前
用Flutter做背单词APP-03为了给单词库塞满数据,我让AI给我打了上万份工
前端·人工智能·后端
hunterandroid2 分钟前
Android 安全最佳实践:从数据存储到网络通信的防护思路
前端
H Journey3 分钟前
web开发学习:html、css、js
前端·css·html·js
hunterandroid9 分钟前
Compose 性能优化:从卡顿到丝滑的实战经验
前端
hunterandroid13 分钟前
Kotlin Coroutines 在 Android 项目中的落地实战
前端
不一样的少年_21 分钟前
不用框架,手搓 AI Agent:(一) 先让它跑起来
前端·后端·agent
味悲21 分钟前
浏览器解析机制与XSS的15种编码绕过
前端·xss
小牛itbull30 分钟前
【译】为什么我使用 React 重构了 WordPress?
前端·react.js·重构
用户0595401744631 分钟前
AI Agent 记忆存储踩坑实录:这个问题让我排查了 3 天,最终用 pytest + Docker 实现秒级回归
前端·css
今日无bug35 分钟前
Emmet 语法速成指南
前端·css·html