mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
16 lines
499 B
Plaintext
16 lines
499 B
Plaintext
<van-overlay
|
|
mask
|
|
show="{{ overlay && show }}"
|
|
z-index="{{ zIndex }}"
|
|
custom-style="{{ overlayStyle }}"
|
|
bind:click="onClickOverlay"
|
|
/>
|
|
<view
|
|
wx:if="{{ inited }}"
|
|
class="custom-class van-popup {{ position ? 'van-popup--' + position : '' }}"
|
|
style="z-index: {{ zIndex }}; animation-name: van-{{ transition || position }}-{{ type }}; animation-duration: {{ duration }}ms; {{ display ? '' : 'display: none;' }}{{ customStyle }}"
|
|
bind:animationend="onAnimationEnd"
|
|
>
|
|
<slot />
|
|
</view>
|