vue弹出遮罩 禁止滚动的做法

2021-04-22  本文已影响0人  CoderZb
<div class="toast_box" v-if="qrCodeShow" @click.self="hide" @touchmove.prevent @mousewheel.prevent>
</div>
CSS
.toast_box {
/* position: absolute; */
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
上一篇 下一篇

猜你喜欢

热点阅读