vue右击界面全屏显示,按ESC退出

效果图
在这里插入图片描述
界面右击出现全屏显示按钮,点击界面全屏展示。

完整代码

<template>
  <div
    id="bigScreen"
    class="full-screen"
    @contextmenu.prevent="showModalText"
    @click="showFullModal = false"
  >
    <div class="content">1234565</div>
    <div
      class="full-screen-modal"
      v-if="showFullModal"
      :style="{
        left: rightClickPoint.x + 'px',
        top: rightClickPoint.y + 'px',
      }"
    >
      <div @click="fullScreen">全屏显示</div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'index',
  data() {
    return {
      showFullModal: false,
      rightClickPoint: {
        x: 0,
        y: 0,
      },
    }
  },
  methods: {
    showModalText(e) {
      // console.log(e, 'e-------------')
      const isFullScreen =
        document.fullScreen ||
        document.mozFullScreen ||
        document.webkitIsFullScreen ||
        document.msFullscreenElement
      if (isFullScreen) return
      this.showFullModal = true
      this.rightClickPoint = {
        x: e.offsetX + 5,
        y: e.offsetY + 15,
      }
    },
    fullScreen() {
      let el = document.getElementById('bigScreen')
      if (el.requestFullscreen) {
        el.requestFullscreen()
      } else if (el.mozRequestFullScreen) {
        el.mozRequestFullScreen()
      } else if (el.webkitRequestFullscreen) {
        el.webkitRequestFullscreen()
      } else if (el.msRequestFullscreen) {
        el = document.body //overwrite the element (for IE) //重要,否则IE11背景有问题
        el.msRequestFullscreen()
      }
      this.showFullModal = false
    },
  },
}
</script>

<style lang="less" scoped>
.full-screen {
  position: relative;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  overflow: hidden;
}
.full-screen-modal {
  position: absolute;
  background: #ffffff;
  width: 120px;
  line-height: 30px;
  padding-left: 10px;
  border-radius: 3px;
  z-index: 999;
  cursor: default;
  &:before {
    position: absolute;
    top: -6px;
    left: 10px;
    display: inline-block;
    content: '';
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgb(255, 255, 255);
    border-left: 6px solid transparent;
  }
}
</style>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值