Skip to content

Overlay 0.1.30

Create a mask layer to emphasize specific page elements and prevent users from performing other operations.

Basic Usage

Use show to control the display/hide of the mask layer.

html
<wd-button type="primary" @click="show = true">Show Overlay</wd-button>
<wd-overlay :show="show" @click="show = false" />

Embedded Content

Modify the indicator type through type, with optional value 'outline', suitable for general module loading.

html
<wd-button type="primary" @click="show = true">Embedded Content</wd-button>
<wd-overlay :show="show" @click="show = false">
  <view class="wrapper">
    <view class="block" @click.stop="" />
  </view>
</wd-overlay>
scss
.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.block {
  width: 120px;
  height: 120px;
  background-color: #fff;
}

Attributes

AttributeDescriptionTypeOptionsDefaultVersion
showWhether to show overlaybooleantruefalse-
durationAnimation duration in millisecondsstring / number-300-
lockScrollWhether to lock scrollingbooleanfalsetrue-
zIndexz-index levelnumber-10-
customStyleCustom stylestring---

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.