Bootstrap 3模态工作正常:
https://jsfiddle.net/qLy7gk3f/4/
https://jsfiddle.net/qLy7gk3f/4/
但Bootstrap 4模态不会:
https://jsfiddle.net/qLy7gk3f/3/
代码完全相同:
$scope.click = function() { $uibModal.open({ templateUrl: "modal.html",controller: "modal",scope: $scope }); }
如何让AngularUI模态与Bootstrap 4一起使用?
我认为这只是添加.in类的一种情况,具体来说:
原文链接:https://www.f2er.com/angularjs/141938.html.fade.in { opacity: 1; } .modal.in .modal-dialog { -webkit-transform: translate(0,0); -o-transform: translate(0,0); transform: translate(0,0); } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; }
更新小提琴:
https://jsfiddle.net/qLy7gk3f/5/
或者您可以修改Bootstrap 4以使用show类:
https://github.com/angular-ui/bootstrap/issues/4234#issuecomment-285303515