css3过渡:不同时间值时:悬停在比出?

时间:2012-01-14 16:32:12

标签: css css3 css-transitions

基本上,当物品悬停时,我试图有不同的过渡时间,而不是项目是鼠标离开时,

#bar{ position:fixed; bottom:-25px; }  /*here you only get to see a piece of the bar    */

#bar:hover{ transform: .2s linear; bottom:0; }

等等

/*this only represents my made out status to cover what i need*/
#bar:mouseLeaved{ transform: 2s linear }

这样显示需要0.2秒,隐藏2秒

我可以在不需要javascript的情况下执行此操作吗?

1 个答案:

答案 0 :(得分:9)

我建议:

#bar { transition: 2s linear; }
#bar:hover { transition: .2s linear; }

并且,在以下情况下,让CSS的顺序为您处理事情:悬停生效(它将覆盖另一个)。

此处的演示演示:http://jsfiddle.net/jfriend00/Hufxa/