将鼠标悬停在网站上的大多数超链接上(查看homepage上的页脚以获取快速示例),您会看到超链接悬停颜色的轻微淡化。
我确信这是jQuery,直到我在jquery.custom.js文件中找不到这些动画 - 只添加特定的悬停颜色类。
莫名其妙!
答案 0 :(得分:1)
看起来这样做了:
a {
text-decoration: none;
color: #2c2d31;
font-weight: bold;
transition: color 0.1s linear;
-moz-transition: color 0.1s linear;
-webkit-transition: color 0.1s linear;
-o-transition: color 0.1s linear;
}
我很尴尬地说我对转换属性不太熟悉,但我一开始也很困惑,特别是在我禁用javascript之后:)
它在FF4和Chrome中对我有用,但according to this article我很快用谷歌搜索,IE9将不会支持这个属性。我不认为这是事实,这正是我在5分钟研究中发现的。