0
我遵循從here取得的解決方案,但它不工作。我需要在屏幕中間水平和垂直居中模式權限。我試圖在這plunk,但它不工作,有什麼想法?中心在屏幕中間的角度用戶界面模式
的Javascript
var app = angular.module('app', ['ui.bootstrap']);
app.controller('ctl', function ($scope,$uibModal) {
$scope.modalInstance = $uibModal.open({
templateUrl: 'myModalContent.html',
windowClass: 'app-modal',
});
});
HTML
<style>
.app-modal .modal-content {
width: 360px;
height: 200px;
}
</style>
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<h4 class="modal-title">The Title</h4>
</div>
<p>Some text</p
</script>
這種解決方案並沒有爲我工作,對不起 – ps0604