CSS平面转换-旋转
属性
transform: rotate(旋转角度); 单位为deg(度)
技巧
取值正负均可,正则顺时针旋转,负则逆时针旋转。
照片
rotate.png
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-NDPwfeon-1722616518802)(https://i-blog.csdnimg.cn/direct/a436523c34944d63b8347e331f645a1b.png#pic_center)]
代码
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>平面转换-旋转</title>
<style>
img {
width: 200px;
transition: all 2s;
}
img:hover {
/* transform: rotate(360deg); */
transform: rotate(-360deg);
}
</style>
</head>
<body>
<img src="./img/rotate.png" alt="">
</body>
</html>