<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.box{
/* background: red; */
width: 120px;
border: 5px #0000FF solid;
border-radius: 100%;
}
.box img:hover{
transform:rotate(360deg);(旋转360,)
transition: 3s;
}
</style>
</head>
<body>
<div class="box">
<img src="img/a2.png" >
</div>
</body>
</html>
原文:https://www.cnblogs.com/jimyking/p/14639252.html