~~~
<style>
.cover{
width: 200px;
height: 200px;
background: pink;
transition:all 2s;
transform-origin: right bottom;
}
.cover:hover{
transform: rotate(90deg);
}
</style>
~~~
~~~
<body>
<div class="cover">
</div>
</body>
~~~
效果图如下:
![](https://box.kancloud.cn/0bcbb78f56841784fa6aa68afec3f06f_487x312.gif)