Closed auban closed 7 years ago
I've updated the accordion to use ng-hide. You should be able to animate it with something like this now:
.accordion-content {
max-height: 499px;
transition: 0.3s all ease-in-out;
&.ng-hide {
max-height: 0;
}
&.ng-hide-add,
&.ng-hide-remove {
display: block !important;
}
}
I assume that answered your question.
Hello,
How to animate the accordion?
Thanks
Auban