| 属性名 | 类型 | 默认值 | 说明 |
|---|
visible | boolean | false | 是否显示 |
duration | number | 200 | 动画时长 |
zIndex | number | 500 | 层级 |
bgColor | string | '#00000080' | 背景色 |
width | number | string | '100%' | 宽度 |
height | number | string | '100%' | 高度 |
<yt-overlay :visible="show" @click="show = false" />
<yt-button @click="show = true">显示遮罩</yt-button>
<yt-overlay :visible="show" @click="show = false" />
<yt-overlay :visible="show" bgColor="rgba(0,0,0,0.5)" />
<yt-overlay :visible="show" bgColor="#ffffff80" />
<yt-overlay :visible="show" :duration="300" />
<yt-overlay :visible="show" :duration="100" />
<yt-overlay :visible="showModal" @click="showModal = false" />
<view v-if="showModal" class="modal">弹窗内容</view>
<yt-overlay :visible="showSidebar" @click="showSidebar = false" />
<view v-if="showSidebar" class="sidebar">菜单</view>
<yt-overlay :visible="loading" bgColor="rgba(255,255,255,0.7)">
<view class="loading-content">
<yt-loading />
</view>
</yt-overlay>
<yt-overlay :visible="showPreview" bgColor="rgba(0,0,0,0.9)" @click="showPreview = false" />
<view v-if="showPreview" class="preview">
<image :src="imageUrl" mode="aspectFit" />
</view>
<yt-overlay :visible="show" @touchmove.stop @click="show = false" />