CSS如下所示:
.rotate
{
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
-ms-transition: all .5s ease-in-out;
}
.rotate:hover
{
-webkit-transform: rotate(90deg) scale(1);
-moz-transform: rotate(90deg) scale(1);
-o-transform: rotate(90deg) scale(1);
-ms-transform: rotate(90deg) scale(1);
}
鼠标悬停在<span class="rotate">
将旋转Firefox中的元素,但不铬。
演示: http://jsfiddle.net/BuHGQ/ (将鼠标悬停在箭头)
有什么可以做,这样它在Chrome浏览器?