https://codepen.io/paranoidjk/pen/LWpaKe
https://codepen.io/paranoidjk/pen/LWpaKe
每个modal的遮罩层正常显示
在同时显示两个及以上的modal时,后面的modal均没有遮罩层,此bug只在ios上出现。
| Environment | Info |
|---|---|
| antd-mobile | 2.3.1 |
| React | 16.9.11 |
| System | iphone11 |
| Browser | safari |
ios上 z-index属性与transform: translateZ 冲突。 ant 在
.am-modal-wrap 使用了 transform: translateZ(1px) 在.am-modal-mask没有使用导致。目前解决办法 添加css .am-modal-mask,
.am-modal-wrap {
transform: translateZ(1px);
}
Most helpful comment
ios上 z-index属性与transform: translateZ 冲突。 ant 在
.am-modal-wrap 使用了 transform: translateZ(1px) 在.am-modal-mask没有使用导致。目前解决办法 添加css .am-modal-mask,
.am-modal-wrap {
transform: translateZ(1px);
}