CSS3 Animation(八)

.w100{

   display:block;  //避免图片有间距问题

   widht:100%;

}

 

描述一个元素旋转:

.div{

animation: round 6s linear infinite;

}

@keyframes round{

0%{

 transform:rotate(0deg);

}

100%{

 transform:rotate(360deg);

}

}

posted on 2017-03-27 18:35  Mc525  阅读(170)  评论(0)    收藏  举报

导航