在悬停链接上旋转图标

时间:2016-07-21 21:55:35

标签: html svg

之后我添加了链接和图标。

enter image description here

Cannot update 'roles' and 'roles' at the same time

如何在悬停在链接上时将图标旋转90度?

1 个答案:

答案 0 :(得分:1)

使用此:

.link--primary:hover .icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

IE< = 8和Opera Mini不支持旋转。 - > http://caniuse.com

编辑前缀支持转换。

-webkit-transition: transform 1s;
-moz-transition: transform 1s;
transition: transform 1s;
相关问题