Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ngDialog 是否允许不同大小的模态?
例如,bootstrap-angular modal 有这样的功能:
$modal.open('sm') or $modal.open('lg')
这将分别打开小型和大型模态。
ngDialog中有这样的东西吗?
您可以使用该选项设置自定义类,例如您的引导类左右:
ngDialog.open({ className: 'ngdialog-theme-default' });
您可以在官方 api 文档中找到更多文档。