css3 animate转圈360旋转

和自甴很熟 提交于 2019-12-03 04:34:46
.logo{

    width:20px;
    height: 20px;
    background: red;
    -webkit-animation:haha1 .8s linear infinite;
  animation:haha1 .8s linear infinite;
} @-webkit-keyframes haha1{ 0%{-webkit-transform:rotate(0deg);} 25%{-webkit-transform:rotate(90deg);} 50%{-webkit-transform:rotate(180deg);} 75%{-webkit-transform:rotate(270deg);} 100%{-webkit-transform:rotate(360deg);} }

.logo{

    width:20px;
    height: 20px;
    background: red;
    -webkit-animation:haha1 .8s linear infinite;
  animation:haha1 .8s linear infinite;
} @-webkit-keyframes haha1{ from{transform:rotate(0)} to{transform:rotate(360deg)} } 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!