我正在玩角度模态ui对话框。我想知道它的中心方式是什么?我发现了一个类似的问题: Twitter Bootstrap - Center Modal Dialog
但无法让它发挥作用,因为我对角度很新。以下是角度ui组件页面中用于模态对话的plunker的简化版本:
http://plnkr.co/edit/M35rpChHYThHLk17g9zU?p=preview
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<h3>I'm a modal!</h3>
</div>
<div class="modal-body">
test
</div>
<div class="modal-footer">
<button class="btn btn-primary" ng-click="ok()">OK</button>
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
</div>
</script>
<button class="btn btn-default" ng-click="open()">Open me!</button>
JS:
angular.module('plunker', ['ui.bootstrap']);
var ModalDemoCtrl = function ($scope, $modal) {
$scope.open = function () {
var modalInstance = $modal.open({
templateUrl: 'myModalContent.html',
controller: ModalInstanceCtrl
});
};
};
var ModalInstanceCtrl = function ($scope, $modalInstance) {
$scope.ok = function () {
$modalInstance.close("ok");
};
$scope.cancel = function () {
$modalInstance.dismiss("cancel");
};
};
我的想法是在模态打开时动态获取页面的尺寸并调整大小并使其居中,但我不知道我怎么能这样做,因为我对angularjs很新。任何有关工作示例的帮助将不胜感激。
答案 0 :(得分:29)
您可以在创建windowClass
时使用modalInstance
属性为模态窗口指定样式类
var modalInstance = $modal.open({
templateUrl: 'myModalContent.html',
controller: 'ModalInstanceCtrl',
windowClass: 'center-modal'
});
然后在你的CSS中你可以指定.center-modal的定义,如
.center-modal {
position: fixed;
top: 10%;
left: 18.5%;
z-index: 1050;
width: 80%;
height: 80%;
margin-left: -10%;
}
或根据您的需要指定任何内容
答案 1 :(得分:0)
This approach适用于任何模态大小。
.modal {
text-align: center;
}
@media screen and (min-width: 768px) {
.modal:before {
display: inline-block;
vertical-align: middle;
content: " ";
height: 100%;
}
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
}
原始答案有一个关于Plunker的例子。