元素用的绝对定位 高度180px 鼠标移入时让元素从-180px运动到0px
可是我下面这样的话运动到0px时就消失了怎么办? 鼠标移出时又闪现出来了 运动到了-180px
我这个应该怎样改才能让它运动到0px时就停止运动 鼠标移出时再回去
@keyframes toTop
{
from {bottom: -180px;}
to {bottom: 0;}
}
@-webkit-keyframes toTop
{
from {bottom: -180px;}
to {bottom: 0;}
}
@keyframes toBottom
{
from {bottom: 0px;}
to {bottom: -180px;}
}
@-webkit-keyframes toBottom
{
from {bottom: 0px;}
to {bottom: -180px;}
}
嵌套一层,父级定高,父级hover,子级移动。