• 前端实现大屏缩放自适应屏幕


    前端实现大屏缩放自适应屏幕
    思路:

    1. 页面初始化获取屏幕的原始比例
    2. 将自适应元素的scale变量设置为当前比例
    3. 监听浏览器窗口大小,获取新的比例值重新给元素scale赋值

    vue2—封装的代码组件

    <template>
      <div
        class="ScaleBox"
        ref="ScaleBox"
        :style="{
          width: width + 'px',
          height: height + 'px'
        }"
      >
        <slot></slot>
      </div>
    </template>
    <script>
    export default {
      props: {
        // 标准内容宽度
        uiContentWidth: {
          type: Number,
          default: 1920
        },
        // 标准内容高度
        uiContentHeight: {
          type: Number,
          default: 0
        },
        // 其他内容的宽度
        otherWidth: {
          type: Number,
          default: 300 //左侧菜单栏默认宽度,如果没有则忽略
        }
      },
      data () {
        return {
          width: 1920, // 初始宽
          height: 1080, // 初始高
          zoom: 1 // 计算要缩放的 宽度比(浏览器可视宽度与设计稿的宽度比)
        }
      },
      mounted () {
        this.setScale()
        window.addEventListener('resize', this.debounce(this.setScale, 100))
      },
      beforeDestroy () {
        window.removeEventListener('resize', this.debounce)
      },
      methods: {
        getScale () {
          // 当前屏幕下需要适配内容的宽度 = 屏幕的宽度 - 其他不需要适配的内容的宽度
          const innerWidth = window.innerWidth - this.otherWidth
          // 内容元素需要改变的大小比例 = 当前屏幕尺寸需要变化到标准尺寸的比例 / 标准比例
          this.zoom = Number(innerWidth / this.uiContentWidth)
          // 设置缩放后的宽高
          this.width = innerWidth
        },
        setScale () {
          this.getScale()
          if (this.$refs.ScaleBox) {
            this.$refs.ScaleBox.style.setProperty('--scaleww', this.zoom)
            this.$refs.ScaleBox.style.setProperty('--scalewh', this.zoom)
          }
        },
        debounce (fn, delay) {
          const delays = delay || 500
          let timer
          return function () {
            const th = this
            const args = arguments
            if (timer) {
              clearTimeout(timer)
            }
            timer = setTimeout(function () {
              timer = null
              fn.apply(th, args)
            }, delays)
          }
        }
      }
    }
    </script>
    
    <style lang="scss">
    body {
      &::-webkit-scrollbar {
        display: none;
      }
    }
    #ScaleBox {
      --scaleww: 1;
      --scalewh: 1;
    }
    .ScaleBox {
      transform: scale(var(--scaleww), var(--scalewh));
      display: flex;
      flex-direction: column;
      transform-origin: 0 0;
      transition: 0.3s;
      z-index: 3;
    }
    .no-zoom {
      transform: scale(var(1 / --scaleww), var(1 / --scalewh));
    }
    </style>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
  • 相关阅读:
    Android 11.0 设置默认8时区和默认24小时制
    Plop 简化重复工作流,维持团队代码一致性
    解决跨域问题
    JavaScript动画库:Anime.js
    geoserver面的填充样式错误记录
    新式拥塞控制漫谈
    Docker(上)(安装Docker、配置阿里镜像加速、Docker运行流程、Docker常用命令)
    怎样部署好MiniO分布式文件存储
    入职字节外包一个月,我离职了
    Mendix:企业成功执行数字化转型的9个因素
  • 原文地址:https://blog.csdn.net/weixin_45324044/article/details/132813423