1、旋转图像
这个例子演示了如何创建"polaroid"的照片和旋转图片。
https://www.runoob.com/try/try.php?filename=trycss3_image_gallery
2、CSS3 transition 属性
transition:width 2s;
-webkit-transition:width 2s; /* Safari */
https://www.runoob.com/cssref/css3-pr-transition.html
transform:rotate(7deg);
-ms-transform:rotate(7deg); /* IE 9 */
-webkit-transform:rotate(7deg); /* Safari and Chrome */
https://www.runoob.com/try/try.php?filename=trycss3_transform_inuse
Css3 Transform 各种变形旋转
https://c.runoob.com/codedemo/3391