背景颜色淡出,无悬停

tho*_*423 2 css webkit transitions

我正在尝试使CSS背景颜色在页面加载后立即消失,而无需任何用户交互。能做到吗?

aph*_*aph 5

可以使用CSS动画来完成。有一个属性animation-delay,可以在几秒钟内设置。

animation-delay: 2s;
-webkit-animation-delay: 2s;
-moz-animation-delay: 2s;
-o-animation-delay: 2s;
Run Code Online (Sandbox Code Playgroud)

这是2秒后背景褪色的简单示例:http : //jsfiddle.net/eKAf2/