从一个图像过渡到另一个图像并在转换过程中旋转:CSS

时间:2016-01-04 18:48:24

标签: javascript html css web

http://punkave.com/

左上角Logo:当你将鼠标悬停在它上面时: 你怎么编码? 从一个图像过渡到另一个图像并让它旋转。

1 个答案:

答案 0 :(得分:0)

您可以在transform上使用:hover作为轮播状态。动画为transition

#logo {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
#logo:hover {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}