CSS如何做到心跳的动画

CSS如何做到心跳的动画

.heart {  color: #EB5E28  animation: heathing 1s ease infinite}@keyframes heathing {  0% {    transform: scale(0.75)  } 
html-css210