You can use CSS transition
with display: none
by defining allow-discrete
on the transition property.
.box {
transition: all 0.7s allow-discrete;
}
You can use CSS transition
with display: none
by defining allow-discrete
on the transition property.
.box {
transition: all 0.7s allow-discrete;
}