angularjs – 带有Bootstrap 4的Angular UI模式

前端之家收集整理的这篇文章主要介绍了angularjs – 带有Bootstrap 4的Angular UI模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Bootstrap 3模态工作正常:
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类的一种情况,具体来说:
.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

原文链接:https://www.f2er.com/angularjs/141938.html

猜你在找的Angularjs相关文章