overlay.wxml 760 B

12345678910111213141516171819202122232425
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <view
  3. wx:if="{{realVisible && preventScrollThrough}}"
  4. class="{{prefix}}-overlay {{transitionClass}}"
  5. style="{{_._style(['z-index:' + _zIndex, computedStyle, style, customStyle])}}"
  6. bind:tap="handleClick"
  7. catchtouchmove="noop"
  8. bind:transitionend="onTransitionEnd"
  9. aria-role="{{ ariaRole || 'button' }}"
  10. aria-label="{{ ariaLabel || '关闭' }}"
  11. >
  12. <slot />
  13. </view>
  14. <view
  15. wx:elif="{{realVisible}}"
  16. class="{{prefix}}-overlay {{transitionClass}}"
  17. style="{{_._style(['z-index:' + _zIndex, computedStyle, style, customStyle])}}"
  18. bind:tap="handleClick"
  19. bind:transitionend="onTransitionEnd"
  20. aria-role="{{ ariaRole || 'button' }}"
  21. aria-label="{{ ariaLabel || '关闭' }}"
  22. >
  23. <slot />
  24. </view>