跟模态框差不多,一个背景view,一个内容view,都绝对定位,内容的z-index比背景高就行 <view class="modal-bac"></view> <view class="modal-content"></view> //透明背景 .modal-bac{ position: absolute; left:0; top:0; right:0; bottom: 0; background: rgba(102,102,102,.5); z-index: 100; } .modal-content{ margin: 0 95rpx; position: absolute; left:0; top:0; right:0; bottom: 0; z-index: 101; }
跟模态框差不多,一个背景view,一个内容view,都绝对定位,内容的z-index比背景高就行