图片360度旋转
Posted beimingbingpo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片360度旋转相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>图片循环旋转</title> <style> *{margin: 0; padding: 0;} @-webkit-keyframes rotation{ from {-webkit-transform: rotate(0deg);} to {-webkit-transform: rotate(360deg);} } .Rotation{ -webkit-transform: rotate(360deg); animation: rotation 3s linear infinite; -moz-animation: rotation 3s linear infinite; -webkit-animation: rotation 3s linear infinite; -o-animation: rotation 3s linear infinite; } .img{border-radius: 250px;} </style> </head> <body> <img class="Rotation img" src="loading_two.png" width="500" height="500"/> </body> </html>
以上是关于图片360度旋转的主要内容,如果未能解决你的问题,请参考以下文章