gpt4 book ai didi

angularjs - 如何设置 Angular 模态自定义高度和宽度

转载 作者:行者123 更新时间:2023-12-04 17:18:57 32 4
gpt4 key购买 nike

我找到了一种更改 Angular 模态宽度的方法,但是我始终不知道如何设置所需的高度。我需要模式为400px宽度,400px高度。我还需要重新定位它,使其位于屏幕的中央。谢谢
plunkr

 $scope.NewJobModal = function () {

var modalInstance = $modal.open({
templateUrl: 'views/modals/NewJobModal.html',
controller: 'NewJobModalInstanceCtrl',
windowClass: 'large-Modal',
resolve: {
p: function () {
return $scope.p;
}
}
});
};

.large-Modal .modal-dialog{
width:30%;
}

最佳答案

两件事情:

1-在您提供的Plunkr中,您未附加.css文件。将src更改为href。

2-然后在您的css文件中:

.large-Modal .modal-dialog{
height: 400px;
width:400px;
margin: auto;
position: absolute;
top:0;
right: 0;
bottom: 0;
left: 0;
}

关于angularjs - 如何设置 Angular 模态自定义高度和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26197855/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com