我遇到了transition
在页面加载时触发 CSS 属性的问题。
问题是,当我将 acolor
transition
应用于一个元素时,(例如:)transition: color .2s
然后当页面第一次加载我的元素时,我的元素会从黑色闪烁到它自己指定的颜色。
假设我有以下代码:
CSS
p.green {
color: green;
transition: color .2s;
-moz-transition: color .2s;
-webkit-transition: color .2s;
-o-transition: color .2s;
}
p.green:hover {
color: yellow;
}
HTML
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src="js/main.js"></script>
<link href="css/main.css" rel="stylesheet" />
</head>
<body>
<p class="green">The Flashing Text</p>
</body>
</html>
在页面加载时,我的p.green
将从淡入淡出black
到green
.
我不想将颜色转换应用于:hover
伪类,因为它不会应用转换onMouseLeave。
让文字在网页上闪烁真的很烦人。到目前为止,我一直在避免使用过渡,除非我真的需要它们,即使如此我也要小心使用。如果有一些我没有看到的非常明显的解决方案,那就太好了!
这发生在谷歌浏览器上。我没有在其他浏览器中测试过。
jsfiddle.net/ShyZp/2 (感谢@Shmiddty)