像 Ionic 2 中的模态一样警报

Alert like Modal in Ionic 2(像 Ionic 2 中的模态一样警报)
本文介绍了像 Ionic 2 中的模态一样警报的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我希望我的警报中有很多功能,所以我在一个模态中实现了所有的东西......现在我想将此模态切割为一个警报,例如不占用屏幕上的整个空间并在左侧的空间上显示 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 中的模态一样警报的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to test @media print with protractor or selenium?(如何用量角器或硒测试@media print?)
Finding shadow DOM text with Selenium and CSS(使用 Selenium 和 CSS 查找阴影 DOM 文本)
Formatting a number as currency using CSS(使用 CSS 将数字格式化为货币)
Failed to create shader cache entry- error while locating an element by its Css selector(通过 Css 选择器定位元素时无法创建着色器缓存条目 - 错误)
A issue with the jquery dialog when using the themeroller css(使用 themeroller css 时 jquery 对话框的问题)
Z-index in jQuery dialog. Autosuggest list not displayed properly(jQuery 对话框中的 Z-index.自动建议列表未正确显示)