当前位置:   article > 正文

前端大屏适配几种方案_怎么确保自己写的前端界面在任意大小的屏幕上显示的效果

怎么确保自己写的前端界面在任意大小的屏幕上显示的效果

 记录一下前端大屏的几种适配方案。
我们是1920*1080的设计稿。

目录

目录

一、方案一:rem+font-size

二、方案二:vw(单位)

三、方案三:scale(缩放)强烈推荐

1、根据宽度比率进行缩放

2、动态计算

2.1、超宽屏最终适配效果

四 vue中使用



一、方案一:rem+font-size

       动态设置HTML根字体大小和body字体大小,会使用到lib-flexible.js插件
lib-flexible.js

  1. (function flexible(window, document) {
  2. var docEl = document.documentElement
  3. var dpr = window.devicePixelRatio || 1
  4. // adjust body font size
  5. function setBodyFontSize() {
  6. if (document.body) {
  7. document.body.style.fontSize = (16 * dpr) + 'px'
  8. }
  9. else {
  10. document.addEventListener('DOMContentLoaded', setBodyFontSize)
  11. }
  12. }
  13. setBodyFontSize();
  14. function setRemUnit() {
  15. var rem = docEl.clientWidth / 24
  16. docEl.style.fontSize = rem + 'px'
  17. }
  18. setRemUnit()
  19. // reset rem unit on page resize
  20. window.addEventListener('resize', setRemUnit)
  21. window.addEventListener('pageshow', function (e) {
  22. if (e.persisted) {
  23. setRemUnit()
  24. }
  25. })
  26. // detect 0.5px supports
  27. if (dpr >= 2) {
  28. var fakeBody = document.createElement('body')
  29. var testElement = document.createElement('div')
  30. testElement.style.border = '.5px solid transparent'
  31. fakeBody.appendChild(testElement)
  32. docEl.appendChild(fakeBody)
  33. if (testElement.offsetHeight === 1) {
  34. docEl.classList.add('hairlines')
  35. }
  36. docEl.removeChild(fakeBody)
  37. }
  38. }(window, document))

我们可以将它下载下来。打开js文件,将设计稿的宽度(1920px)平均分成24等份,每一份为80px。将这个值设置为html字体大小,既1rem = 80px; 24rem = 1920px。

tips:rem是根据html字体大小来计算的,假如html字体为16px,则1rem就等于16px;
在这里插入图片描述

 
       在移动端通常会分成10份,PC端分成24份。
       安装cssrem插件,根节点的字体大小设置为80px。这个是px单位转rem的参考值。

在这里插入图片描述

 配置插件的基准值:

在这里插入图片描述

 这样的话放我们在书写px的适合,这个插件就会自动帮我们转化成rem。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. width: 24rem;
  15. height: 13.5rem;
  16. border: 3px solid red;
  17. box-sizing: border-box;
  18. }
  19. ul {
  20. display: flex;
  21. flex-direction: row;
  22. flex-wrap: wrap;
  23. width: 100%;
  24. height: 100%;
  25. }
  26. li {
  27. width: 33.333%;
  28. height: 50%;
  29. font-size: 0.375rem;
  30. list-style: none;
  31. border: 3px solid green;
  32. box-sizing: border-box;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <ul>
  38. <li>1</li>
  39. <li>2</li>
  40. <li>3</li>
  41. <li>4</li>
  42. <li>5</li>
  43. <li>6</li>
  44. </ul>
  45. </body>
  46. <script src="./js/lib-flexible.js"></script>
  47. </html>

1.查看适配情况
1.1 1920*1080情况下

在这里插入图片描述
1.2 3840*2160(4k屏)情况下
3840也是分成24等份:3840 / 24 = 160

 在这里插入图片描述


1.3 7680*2160 超宽屏下
超宽屏情况下只显示了上半部分,这种适配方式比较适合16:9的情况下使用,后面会有其他方案解决这个问题。

在这里插入图片描述

二、方案二:vw(单位)


      直接使用vw单位,屏幕宽度默认为100vw,那么100vw = 1920px;1vw = 19.2px。这个也是使用cssrem插件,直接将body的宽高(1920px * 1080px),将px转成vw单位。

 在这里插入图片描述

 这种方案和第一个方案类似,超宽屏的情况下也是不能全部显示

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. width: 100vw;
  15. height: 56.25vw;
  16. border: 3px solid red;
  17. box-sizing: border-box;
  18. }
  19. ul {
  20. display: flex;
  21. flex-direction: row;
  22. flex-wrap: wrap;
  23. width: 100%;
  24. height: 100%;
  25. }
  26. li {
  27. width: 33.333%;
  28. height: 50%;
  29. font-size: 1.5625vw;
  30. list-style: none;
  31. border: 3px solid green;
  32. box-sizing: border-box;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <ul>
  38. <li>1</li>
  39. <li>2</li>
  40. <li>3</li>
  41. <li>4</li>
  42. <li>5</li>
  43. <li>6</li>
  44. </ul>
  45. </body>
  46. </html>

三、方案三:scale(缩放)强烈推荐

      很多的大屏适配都是使用的这种方案。
这种方案的原理就是根据宽高比例进行缩放。

1、根据宽度比率进行缩放

(宽度比率=网页当前宽度/设计稿宽度)

  1. <script>
  2. // 设计稿:1920 * 1080
  3. // 1.设计稿尺寸
  4. let targetWidth = 1920;
  5. // 2.拿到当前设备(浏览器)的宽度
  6. // document.documentElement 获取html的宽度
  7. let currentWidth =
  8. document.documentElement.clientWidth || document.body.clientWidth;
  9. // 3.计算缩放比率(屏幕过宽,根据高度计算缩放比例)
  10. let scaleRatio = currentWidth / targetWidth;
  11. // 4.开始缩放网页
  12. document.body.style = `transform: scale(${scaleRatio})`;
  13. </script>

 上面这种根据宽度比例进行缩放的,针对1920 * 1080,3840 * 2160(4k)是没有问题的,但是在超宽屏的情况下还是存在只显示一半的问题。
分析原因:

  1. 我们的设计稿:
  2. 1920 * 1080 => 要适配 (1920*2=3840, 1080*2=2160, 4k屏) 3840 * 2160
  3. 也要适配=> ( 1920*4 = 7680 : 1080 * 2 = 2160) 7680 * 2160
  4. 我们当前是根据宽度比率进行缩放的:
  5. 先设配3840 * 2160
  6. scaleRatio = 3840 / 1920 = 2
  7. 根据这个缩放比率
  8. 我们的设计稿宽高都会被缩放两倍
  9. 1920 * 2 = 3840
  10. 1080 * 2 = 2160
  11. 设配7680 * 2160
  12. scaleRatio = 7680 / 1920 = 4
  13. 根据这个宽度比例我们的设置稿宽高都会被缩放4
  14. 1920 * 4 = 7680
  15. 1080 * 4 = 4240
  16. 这个原先的比例是 4 : 2,现在变成了 44 ,这也是为什么我们只看到一半高度的原因。

2、动态计算

      动态计算网页宽高比,决定是按照宽度的比例还是高度的比例进行缩放。

  1. <script>
  2. // 设计稿:1920 * 1080
  3. // 1.设计稿尺寸
  4. let targetWidth = 1920;
  5. let targetHeight = 1080;
  6. let targetRatio = 16 / 9; // 宽高比率 (宽 / 高)
  7. // 2.拿到当前设备(浏览器)的宽度和高度
  8. let currentWidth =
  9. document.documentElement.clientWidth || document.body.clientWidth;
  10. let currentHeight =
  11. document.documentElement.clientHeight || document.body.clientHeight;
  12. // 3.计算缩放比率(屏幕过宽,根据高度计算缩放比例)
  13. // 若currentWidth是4k屏宽度 3840 除于 我们设计稿的宽度 1920 3840/1920 = 2
  14. // 这样页面就行进行2倍缩放
  15. let scaleRatio = currentWidth / targetWidth; // 参照宽度进行缩放(默认情况下)
  16. // 当前页面宽高比例,当页面越宽currentRatio值就越大
  17. let currentRatio = currentWidth / currentHeight;
  18. // 判断是根据宽度进行缩放,还是根据高度进行缩放
  19. if (currentRatio > targetRatio) {
  20. // 根据高度进行网页的缩放
  21. scaleRatio = currentHeight / targetHeight; // 参照高度进行缩放(屏幕很宽的情况下)
  22. document.body.style = `transform: scale(${scaleRatio}) translateX(-50%)`;
  23. } else {
  24. // 根据宽度进行网页的缩放
  25. document.body.style = `transform: scale(${scaleRatio})`;
  26. }
  27. </script>

2.1、超宽屏最终适配效果

在这里插入图片描述

 完整demo代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. position: relative;
  15. width: 1920px;
  16. height: 1080px;
  17. border: 3px solid red;
  18. /* 设置缩放原点 */
  19. transform-origin: left top;
  20. box-sizing: border-box;
  21. }
  22. ul {
  23. display: flex;
  24. flex-direction: row;
  25. flex-wrap: wrap;
  26. width: 100%;
  27. height: 100%;
  28. }
  29. li {
  30. width: 33.333%;
  31. height: 50%;
  32. font-size: 30px;
  33. list-style: none;
  34. border: 3px solid green;
  35. box-sizing: border-box;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <ul>
  41. <li>1</li>
  42. <li>2</li>
  43. <li>3</li>
  44. <li>4</li>
  45. <li>5</li>
  46. <li>6</li>
  47. </ul>
  48. </body>
  49. <script>
  50. // 设计稿:1920 * 1080
  51. // 设配目标:1920 * 1080 ( 1 : 1) | 3840* 2160 ( 2 : 2 ) | 7680 * 2160 ( 4 : 2)
  52. // 1.设计稿尺寸
  53. let targetWidth = 1920;
  54. let targetHeight = 1080;
  55. let targetRatio = 16 / 9; // 宽高比率 (宽 / 高)
  56. // 2.拿到当前设备(浏览器)的宽度
  57. let currentWidth =
  58. document.documentElement.clientWidth || document.body.clientWidth;
  59. let currentHeight =
  60. document.documentElement.clientHeight || document.body.clientHeight;
  61. // 3.计算缩放比率(屏幕过宽,根据高度计算缩放比例)
  62. let scaleRatio = currentWidth / targetWidth; // 参照宽度进行缩放(默认情况下)
  63. // 当前宽高比例
  64. let currentRatio = currentWidth / currentHeight;
  65. if (currentRatio > targetRatio) {
  66. scaleRatio = currentHeight / targetHeight; // 参照高度进行缩放(屏幕很宽的情况下)
  67. document.body.style = `transform: scale(${scaleRatio}) translateX(-50%); left: 50%;`;
  68. } else {
  69. // 4.开始缩放网页
  70. document.body.style = `transform: scale(${scaleRatio})`;
  71. }
  72. </script>
  73. </html>

js

  1. <script>
  2. var lazyFun;
  3. function init(el, width, height) {
  4. var _el = document.getElementById(el);
  5. var hScale = window.innerHeight / height;
  6. var wScale = window.innerWidth / width;
  7. _el.style.transform = 'scale(' + wScale + ',' + hScale + ')'
  8. }
  9. init('mainbody', 1920, 1080);
  10. window.onresize = function() {
  11. clearTimeout(lazyFun);
  12. lazyFun = setTimeout(function() {
  13. init('mainbody', 1920, 1080)
  14. }, 100);
  15. };
  16. </script>

四 vue中使用

第一步:在data中设置默认宽高及缩放比,(宽高的值根据自己电脑的情况设置,
博主的是1920*1080)

  1. style: {
  2.   width: "1920",
  3.   height: "1080",
  4.   transform: "scaleY(1) scaleX(1) translate(-50%, -50%)"
  5. }


第二步:在methods里添加两个方法

  1. getScale() {
  2.    const w = window.innerWidth / this.style.width;
  3.    const h = window.innerHeight / this.style.height;
  4.    return {x:w,y:h};
  5. },
  6. setScale() {
  7.    let scale = this.getScale();
  8.    this.style.transform = "scaleY(" + scale.y + ") scaleX(" + scale.x + ") translate(-50%, -50%)";
  9. },


第三步:在mounted中调用,并监听浏览器窗口改变事件

  1. mounted() {
  2.       let that = this;
  3.       that.setScale();
  4.       /*窗口改变事件*/
  5.       $(window).resize(()=> {
  6.         that.setScale();
  7.       });
  8. }


第四步:在css里设置最外层盒子样式

  1. #screen{
  2.     z-index: 100;
  3.     transform-origin: 0 0;
  4.     position: fixed;
  5.     left: 50%;
  6.     top: 50%;
  7.     transition: 0.3s;
  8. }


第五步:在最外层盒子标签里设置行内样式

  1. <div id="screen" :style="{'width':`${style.width}px`,'height':`${style.height}px`,'transform':`${style.transform}`}">
  2. </div>


第六步:最后就可以在盒子里写任意代码了,px单位就行

 代码:

  1. <template>
  2. <div
  3. id="screen"
  4. :style="{
  5. width: `${style.width}px`,
  6. height: `${style.height}px`,
  7. transform: `${style.transform}`
  8. }"
  9. >
  10. <div class="box"></div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'ScaleBox',
  16. props: {},
  17. data () {
  18. return {
  19. style: {
  20. width: '1920',
  21. height: '1080',
  22. transform: 'scaleY(1) scaleX(1) translate(-50%, -50%)'
  23. }
  24. }
  25. },
  26. methods: {
  27. getScale () {
  28. const w = window.innerWidth / this.style.width
  29. const h = window.innerHeight / this.style.height
  30. return { x: w, y: h }
  31. },
  32. setScale () {
  33. const scale = this.getScale()
  34. this.style.transform =
  35. 'scaleY(' + scale.y + ') scaleX(' + scale.x + ') translate(-50%, -50%)'
  36. }
  37. },
  38. mounted () {
  39. const that = this
  40. that.setScale()
  41. /* 窗口改变事件 */
  42. window.addEventListener('resize', function () {
  43. console.log('窗口发生变化')
  44. that.setScale()
  45. })
  46. }
  47. }
  48. </script>
  49. <style lang="scss">
  50. #screen {
  51. z-index: 100;
  52. transform-origin: 0 0;
  53. position: fixed;
  54. left: 50%;
  55. top: 50%;
  56. transition: 0.3s;
  57. }
  58. .box {
  59. width: 100%;
  60. height: 100%;
  61. background: url('@/assets/images/bac.png');
  62. }
  63. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/302165?site
推荐阅读
相关标签
  

闽ICP备14008679号