我希望我的警报中有很多功能,所以我在一个模态中实现了所有的东西......现在我想将此模态切割为一个警报,例如不占用屏幕上的整个空间并在左侧的空间上显示 bg我们的模态.如下图所示
I wanted many functionalities in my alert so i implemented all the things in a modal...now i want to cutomize this modal as an alert like not taking the whole space on the screen and showing the bg on the space left outsude our modal. as shown in the image below
例如:你能告诉我如何在模态框之外实现,使它看起来像一个警报..在离子 2
eg: can you tell me ow to implement outside the modal so that it looks like an alert.. in ionic 2
请帮忙,谢谢
可以借助 scss 进行调整
You can adjust this with the help of scss
.modal-wrapper {
position: absolute;
width: 90%;
height: 65%;
top: 20%;
left: 5%;
}
您可以根据需要更改内容的宽度、高度、顶部和左侧.请注意,修改此值将使您的应用程序中的所有模态都使用此配置而不是默认模态.
You can alter the content width, height, top and left as per your need. Kindly note that modifying this value will make all the modal in your application to use this configuration rather than the default modal.
要以灰色显示背景,请使用以下代码
To show the backdrop in grey color, use the below code
@media not all and (min-height: 600px) and (min-width: 768px) {
ion-modal ion-backdrop {
visibility: visible;
}
}
这篇关于像 Ionic 2 中的模态一样警报的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!