Safari 7.0.6中存在错误!
大多数浏览器的默认链接颜色为蓝色。所以当我使用这个
时a {
color: #808080;
text-decoration: none;
-webkit-transition: color 10s;
-o-transition: color 10s;
-ms-transition: color 10s;
-moz-transition: color 10s;
transition: color 10s;
}
a:hover {
color: #B01617;
}
在链接的外部CSS文件中,而不是insite
<style type="text/css">...</style>
和http://jsfiddle.net一样,转换不仅适用于悬停效果。从blue
到#808080
的转换也需要10s
。
任何人都可以证实吗?我在哪里可以向Apple报告?