Angularjs   发布时间:2022-04-20  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了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;
}

大佬总结

以上是大佬教程为你收集整理的Angular ngx-bootstrap折叠不是动画的全部内容,希望文章能够帮你解决Angular ngx-bootstrap折叠不是动画的所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: