Код: Выделить всё
@keyframes expandTop {
from {
height: 0;
}
to {
height: 100px;
}
}
&.expand {
animation: expandTop 0.5s ease-out forwards;
}
@keyframes collapseTop {
from {
height: 100px;
}
to {
height: 0;
}
}
&.collapse {
animation: collapseTop 0.5s ease-out forwards;
}
&.still {
animation: none;
}
}
Код: Выделить всё
@keyframes top {
from {
height: 0;
}
to {
height: 100px;
}
}
&.expand {
animation: top 0.5s ease-out forwards;
}
&.collapse {
animation: top 0.5s ease-out reverse backwards;
}
&.still {
animation: none;
}
Подробнее здесь: https://stackoverflow.com/questions/794 ... -backwards
Мобильная версия