Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 CSS3 淡出但不淡入。 IE 当我将类应用于元素时,我希望背景立即更改颜色而没有延迟或过渡,当我删除它时,我希望背景根据过渡。我知道它应该很简单,但我还没有设法弄清楚。
指定有和没有类的元素的转换时间。
.el { background: red; -webkit-transition: background .5s; } .el.hover { background: blue; -webkit-transition: 0; }