png图片的loading旋转

img{
  animation:rotate 1s linear infinite;
  -webkit-animation:rotate 1s linear infinite;
}

@keyframes rotate
{
from {transform:rotate(0) ;}
to {transform:rotate(360deg);}
}
@-webkit-keyframes rotate
{
from {transform:rotate(0) ;}
to {transform:rotate(360deg);}
}

posted @ 2017-01-10 11:46  郭康勋kawhi  阅读(891)  评论(0编辑  收藏  举报