我想到的是 transition:color 0 ease-in 1s
最后一个时间是延迟,使用时注意加上备浏览器前缀。
<!DOCTYPE html><html>
<head>
<style>
div
{
width:100px
height:100px
color: blue
transition:all 0 ease-in 1s
}
div:hover
{
color: red
}
</style>
</head>
<body>
<div>test</div>
<p>请把鼠标指针移动到蓝色的 div 元素上,就可以看到过渡效果。</p>
<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>
</body>
</html>