私はモーダルを作成しています:
var modal = $modal.open({
templateUrl: "/partials/welcome",
controller: "welcomeCtrl",
backdrop: "static",
scope: $scope,
});
幅を広げる方法はありますか?
モーダルダイアログクラスをターゲットにするためには、このようにCSSクラスを使用します。
.app-modal-window .modal-dialog {
width: 500px;
}
次に、モーダルウィンドウを呼び出すコントローラで、windowClassを設定します。
$scope.modalButtonClick = function () {
var modalInstance = $modal.open({
templateUrl: 'App/Views/modalView.html',
controller: 'modalController',
windowClass: 'app-modal-window'
});
modalInstance.result.then(
//close
function (result) {
var a = result;
},
//dismiss
function (result) {
var a = result;
});
};
もう1つの簡単な方法は、2つのあらかじめ用意されたサイズを使用して、htmlで関数を呼び出すときにそれらをパラメータとして渡すことです。幅900pxの大型モーダルには 'lg'、幅300pxの小型モーダルには 'sm'を指定するか、パラメータを指定しないで、デフォルトサイズの600pxを使用します。
コード例:
$scope.openModal = function (size) {
var modal = $modal.open({
templateUrl: "/partials/welcome",
controller: "welcomeCtrl",
backdrop: "static",
scope: $scope,
size: size,
});
modal.result.then(
//close
function (result) {
var a = result;
},
//dismiss
function (result) {
var a = result;
});
};
hTMLでは、次のようなものを使用します。
<button ng-click="openModal('lg')">open Modal</button>
ビューポートの解像度を広くするために、ポップアップの.modal-lgクラスにカスタムの幅を指定することができます。これを行う方法は次のとおりです。
CSS:
@media (min-width: 1400px){
.my-modal-popup .modal-lg {
width: 1308px;
}
}
JS:
var modal = $modal.open({
animation: true,
templateUrl: 'modalTemplate.html',
controller: 'modalController',
size: 'lg',
windowClass: 'my-modal-popup'
});
モーダルを開くとき、それはパラメータとしてサイズを受け入れます。
可能な値のサイズ:sm, md, lg
$scope.openModal = function (size) {
var modal = $modal.open({
size: size,
templateUrl: "/app/user/welcome.html",
......
});
}
HTML:
<button type="button"
class="btn btn-default"
ng-click="openModal('sm')">Small Modal</button>
<button type="button"
class="btn btn-default"
ng-click="openModal('md')">Medium Modal</button>
<button type="button"
class="btn btn-default"
ng-click="openModal('lg')">Large Modal</button>
特定のサイズが必要な場合は、モデルHTMLにスタイルを追加します。
<style>.modal-dialog {width: 500px;} </style>
uibModalクラスを上書きして必要に応じてそれらを使用する必要がない別の方法があります:あなたは "xlg"のようなあなた自身のサイズタイプで$ uibModal.open関数を呼び出し、そして以下のように "modal-xlg"という名前のクラスを定義します:
.modal-xlg{
width:1200px;
}
次のように$ uibModal.openを呼び出します。
var modalInstance = $uibModal.open({
...
size: "xlg",
});
そしてこれはうまくいくでしょう。あなたがサイズのブートストラップとして渡すどんな文字列でもそれを "modal-"と一緒にするでしょう、そしてこれはウィンドウのためのクラスの役割を果たすでしょう。
Bootstrap-uiからテンプレートを引き継ぐだけのほうが簡単だとわかりました。私が変更した内容を示すために、コメント付きのHTMLはそのまま残しました。
デフォルトのテンプレートを上書きします。
<script type="text/ng-template" id="myDlgTemplateWrapper.html">
<div tabindex="-1" role="dialog" class="modal fade" ng-class="{in: animate}"
ng-style="{'z-index': 1050 + index*10, display: 'block'}" ng-click="close($event)">
<!-- <div class="modal-dialog"
ng-class="{'modal-sm': size == 'sm', 'modal-lg': size == 'lg'}"
>
<div class="modal-content" modal-transclude></div>
</div>-->
<div modal-transclude>
<!-- Your content goes here -->
</div>
</div>
</script>
ダイアログテンプレートを変更します(「modal-dialog」クラスと「modal-content」クラスを含むラッパーDIVに注意してください)。
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-dialog {{extraDlgClass}}"
style="width: {{width}}; max-width: {{maxWidth}}; min-width: {{minWidth}}; ">
<div class="modal-content">
<div class="modal-header bg-primary">
<h3>I am a more flexible modal!</h3>
</div>
<div class="modal-body"
style="min-height: {{minHeight}}; height: {{height}}; max-height {{maxHeight}}; ">
<p>Make me any size you want</p>
</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>
</div>
</div>
</script>
そして、変更したいCSSクラスやスタイルパラメータを指定してモーダルを呼び出します(すでに "app"が他の場所で定義されていると仮定します)。
<script type="text/javascript">
app.controller("myTest", ["$scope", "$modal", function ($scope, $modal)
{
// Adjust these with your parameters as needed
$scope.extraDlgClass = undefined;
$scope.width = "70%";
$scope.height = "200px";
$scope.maxWidth = undefined;
$scope.maxHeight = undefined;
$scope.minWidth = undefined;
$scope.minHeight = undefined;
$scope.open = function ()
{
$scope.modalInstance = $modal.open(
{
backdrop: 'static',
keyboard: false,
modalFade: true,
templateUrl: "myModalContent.html",
windowTemplateUrl: "myDlgTemplateWrapper.html",
scope: $scope,
//size: size, - overwritten by the extraDlgClass below (use 'modal-lg' or 'modal-sm' if desired)
extraDlgClass: $scope.extraDlgClass,
width: $scope.width,
height: $scope.height,
maxWidth: $scope.maxWidth,
maxHeight: $scope.maxHeight,
minWidth: $scope.minWidth,
minHeight: $scope.minHeight
});
$scope.modalInstance.result.then(function ()
{
console.log('Modal closed at: ' + new Date());
},
function ()
{
console.log('Modal dismissed at: ' + new Date());
});
};
$scope.ok = function ($event)
{
if ($event)
$event.preventDefault();
$scope.modalInstance.close("OK");
};
$scope.cancel = function ($event)
{
if ($event)
$event.preventDefault();
$scope.modalInstance.dismiss('cancel');
};
$scope.openFlexModal = function ()
{
$scope.open();
}
}]);
</script>
「開く」ボタンを追加して火を消します。
<button ng-controller="myTest" class="btn btn-default" type="button" ng-click="openFlexModal();">Open Flex Modal!</button>
これで、必要なクラスを追加したり、必要に応じて幅と高さのサイズを変更したりできます。
私はそれをwrapperディレクティブでさらに囲みました。これはこれから先は簡単です。
乾杯。
Dmitry Kominソリューションを使用して問題を解決しましたが、ブラウザで直接機能するようにCSS構文を変えています。
CSS
@media(min-width: 1400px){
.my-modal > .modal-lg {
width: 1308px;
}
}
JSは同じです。
var modal = $modal.open({
animation: true,
templateUrl: 'modalTemplate.html',
controller: 'modalController',
size: 'lg',
windowClass: 'my-modal'
});
あなたは角度モーダルのサイズ特性を使って非常に簡単な方法でこれをすることができます。
var modal = $modal.open({
templateUrl: "/partials/welcome",
controller: "welcomeCtrl",
backdrop: "static",
scope: $scope,
size:'lg' // you can try different width like 'sm', 'md'
});
デフォルトの大きいサイズをそのまま使用したい場合は、 'modal-lg'を追加できます。
var modal = $modal.open({
templateUrl: "/partials/welcome",
controller: "welcomeCtrl",
backdrop: "static",
scope: $scope,
windowClass: 'modal-lg'
});
角度5のモーダルダイアログでmax-widthを使う
.mod-class .modal-dialog {
max-width: 1000px;
}
そして、他の人が推奨するwindowClassを使ってください。
this.modalService.open(content, { windowClass: 'mod-class' }).result.then(
(result) => {
// this.closeResult = `Closed with: ${result}`;
}, (reason) => {
// this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
});
また、CSSコードをグローバルスタイル> styles.cssに配置する必要がありました。