Fade Effect on Link Hover?

前端 未结 4 1201
伪装坚强ぢ
伪装坚强ぢ 2020-12-02 04:28

on many sites, such as http://www.clearleft.com, you\'ll notice that when the links are hovered over, they will fade into a different color as opposed to immediately switchi

4条回答
  •  旧巷少年郎
    2020-12-02 04:53

    Try this in your css:

    .a {
        transition: color 0.3s ease-in-out;
    }
    .a {
        color:turquoise;
    }
    .a:hover {
        color: #454545;
    }
    

提交回复
热议问题