<html>
<style>
.img:hover{border-radius:50%}
</style>
<body>
<img src="xxx.jpg" class="img"/>
</body>
</html>
1、使用css来控制变化,即给图片添加css样式2、在图片样式绑定:hover事件,控制图片在鼠标悬停时变化
//定义动画
@-webkit-keyframes imgChange
{
0%{border-radius:0%}
50%{border-radius:50%}
100%{border-radius:0%}
}
img:hover{
-webkit-animation-name:imgChange
-webkit-animation-duration:1s
-webkit-animation-timing-function:linear
}