我得到了这个 CSS3 表,但我有一点问题
我需要让它以与它进入时相同的方式出去,我的意思是当它下跌时看看它
@-moz-keyframes custom_effect {
0% { height: 60px;}
100% {height: 225px;}
}
@-webkit-keyframes custom_effect {
0% {height: 60px;}
100% {height: 225px;}
}
ul#nav-drp li:hover {
-moz-animation-name: custom_effect;
-moz-animation-duration: 1.0s;
-moz-animation-timing-function: ease;
-moz-animation-iteration-count: 1;
-moz-animation-direction: normal;
-moz-animation-delay: 4;
-moz-animation-play-state: running;
-moz-animation-fill-mode: forwards;
-webkit-animation-name: custom_effect;
-webkit-animation-duration: 1.0s;
-webkit-animation-timing-function: ease;
-webkit-animation-iteration-count: 1;
-webkit-animation-direction: normal;
-webkit-animation-delay: 1;
-webkit-animation-play-state: running;
-webkit-animation-fill-mode: forwards;
我无法让它以与进入时相同的方式退出,我试图将 ( -webkit-animation-timing-function: ease;
)替换为 (),-webkit-transition: 1s ease-in-out;
但我没有工作,您能描述一下出了什么问题吗?