transtion-transform

200 阅读1分钟
a{
    display: inline-block; // 一定要有block属性
    transform: rotate(0deg);
    transition: transform 1s;
}
a:hover{
    display: inline-block; // 一定要有block属性
    transform: rotate(180deg);
    transition: transform 1s;
}