html元素呼吸效果

前端开发   发布日期:2025年06月24日   浏览次数:351
{-webkit-animation: scaleout 1.2s infinite ease-in-out;
    animation: scaleout 1.2s infinite ease-in-out;}
@keyframes scaleout {
    0% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    } 100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
      }
  }

 

以上就是html元素呼吸效果的详细内容,更多关于html元素呼吸效果的资料请关注九品源码其它相关文章!