移动端相关知识

移动端相关知识

一、屏幕尺寸

屏幕尺寸指的是屏幕的对角线的长度,通常用英寸单位。

1 英寸 = 2.54厘米

在这里插入图片描述

二、像素

物理像素:真实存在的像素单位,就是手机上面的发光点,它对应的就是屏幕的分辨率,设备能控制显示的最小单元。

//	1.例如:iphone6、7、8的分辨率为750 * 1334,所以物理像素为750 * 1334

设备独立像素:此因逻辑像素,计算机设备中的一个点,css中设置的像素指的就是该像素。注意:设备独立像素和物理像素不是1 : 1的关系。

//	1.例如:我们设置样式1px,就是1设备独立像素

三、像素比(dpr)

像素比在设备生产出来就确认了,不会变化了。

设备像素比(dpr) = 物理像素 / 设备独立像素

JavaScript通过:window.devicePixelRatio获取。

CSS通过媒体查询:@media screen and(-webkit-min-device-pixel-ratio: 2) { } 操作。

四、视口

布局视口:最早用于保证移动端网站的外观特性与桌面浏览器呈现一样。每个浏览器的布局视口都不一样。

//	1.通过下列获取
document.documentElement.clientWidth

视觉视口:它指的是浏览器的可视区域,也就是我们在移动端设备上能够看到的区域。默认与当前浏览器窗口大小相等,当用户对浏览器进行缩放时,不会改变布局的大小,但会改变视觉窗口的大小。

//	1.通过下列获取
window.innerWidth

理想视口:理想中的视口。这个概念最早由苹果公司提出,其它浏览器厂商陆续跟进,目的是解决在布局视口下页面元素过小的问题。显示在理想视口中的页面具有最理想的宽度,用户进行无需进行缩放。

所谓理想视口,就是当布局视口大小等于视觉视口大小,那么屏幕视口我们叫做理想视口

//	1.通过下列获取
screen.width

五、meta标签

meta:对于移动端页面,配置视口大小和缩放等。

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
//	1.设置布局视口宽度
width

//	2.布局视口宽度等于视觉视口宽度,这样就形成了理想视口
width=device-widt

//	3.初始化屏幕的缩放系数
initial-scale

//	4.最大屏幕缩放系数
maximum-scale

//	5.用户是否能进行缩放
user-scalable

六、单位

px:绝对单位,代表像素。

//	1. 1px指的是1css像素,1设备独立像素

em:相对单位,相对于父元素。

//	1.在font-size中使用是相对于父元素的字体大小,在其它属性中使用是相对于自身的字体大小

rem:相对单位,相对于html标签字体大小。

vw/vh:相对单位,相对于视口大小。

//	1.默认浏览器将视口等分为100份,1vw等于屏幕宽度的1%,1vh等于屏幕高度的1%

pt:绝对长度单位,android和ios设备单位。

rpx:微信小程序提供的自适应单位。

//	1.不论大小屏幕,规定屏幕宽度为750rpx

//	2.如在 iPhone6 上,屏幕宽度为375px,共有750个物理像素,则750rpx = 375px = 750物理像素

//	3. 2rpx = 1px = 2物理像素

拓展:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>单位</title>
    <style>
      * {
        margin: 0;
        padding: 0;
      }
      .container {
        font-size: 10px;
      }

      .box {
        font-size: 20px;
      }

      .text1 {
        font-size: 20px;
      }

      .text2 {
        /* 相对于父元素 */
        font-size: 2em;
      }

      html {
        font-size: 10px;
      }

      .text3 {
        /* 相对于html元素字体大小 */
        font-size: 2rem;
      }

      .text4 {
        /* 将浏览器窗口等分成100份 1vw = 屏幕宽度的1% */
        font-size: 20vw;
      }

      .container1 {
        display: flex;
      }

      /* .box1 {
        width: 187.5px;
        height: 100px;
        background-color: #000;
      } */
      .box1 {
        width: 50vw;
        height: 100px;
        background-color: #000;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="box">
        <span class="text1">这是一段文字</span>
        <span class="text2">这是一段文字</span>
        <span class="text3">这是一段文字</span>
        <span class="text4">这是一段文字</span>
        <span>这是一段文字</span>
      </div>
    </div>

    <div class="container1">
      <div class="box1"></div>
      <div class="box1"></div>
    </div>
  </body>
</html>

七、扩展

PPI:每英寸所包含的像素点数目,数值越高,说明屏幕显示图像更清晰。

retina:iphone4开始,苹果公司推出了视网膜屏幕。

八、练习

1. 移动端1px边框
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>移动端1px边框</title>
    <style>
      /* .box {
        border-top: 0.5px solid #000;
      } */
      /* .box {
        width: 100%;
        height: 0.5px;
        background-color: #000;
      } */

      .box1 {
        width: 100%;
        height: 1px;
        background-color: #000;
        margin-bottom: 20px;
      }

      .box2 {
        width: 100%;
        height: 1px;
        background-color: #000;
        transform: scaleY(0.5);
      }

      .box3 {
        position: relative;
        width: 100px;
        height: 100px;
        background-color: yellowgreen;
        margin-top: 20px;
      }

      @media screen and (-webkit-min-device-pixel-ratio: 2) {
        .box3::before {
          transform: scaleY(0.5);
        }
      }

      @media screen and (-webkit-min-device-pixel-ratio: 3) {
        .box3::before {
          transform: scaleY(0.3333333);
        }
      }

      .box3::before {
        position: absolute;
        left: 0;
        bottom: 0;
        content: " ";
        display: block;
        width: 100%;
        height: 1px;
        background-color: #000;
      }
    </style>
  </head>
  <body>
    <div class="box1"></div>

    <div class="box2"></div>

    <div class="box3"></div>
  </body>
</html>

2. 高清图
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      .banner {
        width: 355px;
        height: 355px;
        background-image: url("./images/banner.png");
        background-size: 100%;
      }

      @media screen and (-webkit-min-device-pixel-ratio: 2) {
        .banner {
          background-image: url("./images/banner@2x.png");
        }
      }

      @media screen and (-webkit-min-device-pixel-ratio: 3) {
        .banner {
          background-image: url("./images/banner@3x.png");
        }
      }
    </style>
  </head>
  <body>
    <div class="banner"></div>
  </body>
</html>

九、适配方案

1. rem适配

rem适配:机型太多,不同的机型屏幕大小不一样。

方案一:

lib-flexible + px2rem-loader

方案二:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>rem适配</title>
    <style>
      * {
        margin: 0;
        padding: 0;
      }
      .container {
        display: flex;
      }
      .box1 {
        width: 5rem;
        height: 2.66667rem;
        background-color: red;
      }
      .box2 {
        width: 5rem;
        height: 2.66667rem;
        background-color: green;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="box1"></div>
      <div class="box2"></div>
    </div>
    <script>
      /*
        设计稿已知元素大小,如100px(y),如何转rem单位?
          x = y / 37.5

        基于webpack脚手架开发,插件px2rem来自动转化
      */
      function setFontSize() {
        const clientWidth = document.documentElement.clientWidth;
        const val = clientWidth / 10;
        document.documentElement.style.fontSize = val + "px";
      }

      setFontSize();
      // 窗口调整事件
      window.onresize = setFontSize;
    </script>
  </body>
</html>
2. viewport适配
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>viewport适配</title>
    <style>
      * {
        margin: 0;
        padding: 0;
      }
      .container {
        display: flex;
      }
      .box1 {
        width: 50vw;
        height: 26.66667vw;
        background-color: red;
      }
      .box2 {
        width: 50vw;
        height: 26.66667vw;
        background-color: green;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="box1"></div>
      <div class="box2"></div>
    </div>
  </body>
</html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值