この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;
)に置き換えてみましたが、うまくいきませんでした。何が悪かったのでしょうか。