Angular ngx-bootstrap折叠不是动画的

前端之家收集整理的这篇文章主要介绍了Angular ngx-bootstrap折叠不是动画的前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用角度5和ngx-bootstrap,所以当我尝试添加一个collpase时,通过跟随崩溃 docs,我得到了一个有效的例子,但没有动画(折叠的分散并立即显示没有效果).

那么有没有办法展示动画?

解决方法

我有同样的问题,我通过一些CSS技巧解决它.它对我有用.我希望它对你有用.我发生因为ngx-bootstrap不使用“.collapsing”类,所以我在代码中做了一些更改.

#your_nav{
    display: block !important;
    max-height: 1px !important;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#your_nav.show{
    max-height: 230px !important;
}

猜你在找的Angularjs相关文章