久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='BXiWJ'></bdo><ul id='BXiWJ'></ul>
  • <i id='BXiWJ'><tr id='BXiWJ'><dt id='BXiWJ'><q id='BXiWJ'><span id='BXiWJ'><b id='BXiWJ'><form id='BXiWJ'><ins id='BXiWJ'></ins><ul id='BXiWJ'></ul><sub id='BXiWJ'></sub></form><legend id='BXiWJ'></legend><bdo id='BXiWJ'><pre id='BXiWJ'><center id='BXiWJ'></center></pre></bdo></b><th id='BXiWJ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='BXiWJ'><tfoot id='BXiWJ'></tfoot><dl id='BXiWJ'><fieldset id='BXiWJ'></fieldset></dl></div>
  • <tfoot id='BXiWJ'></tfoot>

    1. <legend id='BXiWJ'><style id='BXiWJ'><dir id='BXiWJ'><q id='BXiWJ'></q></dir></style></legend>

        <small id='BXiWJ'></small><noframes id='BXiWJ'>

      1. 什么是元標(biāo)記中的初始比例、用戶(hù)可縮放、最小

        What is initial scale, user-scalable, minimum-scale, maximum-scale attribute in meta tag?(什么是元標(biāo)記中的初始比例、用戶(hù)可縮放、最小比例、最大比例屬性?)

            <tbody id='y1C9l'></tbody>
        1. <small id='y1C9l'></small><noframes id='y1C9l'>

          <tfoot id='y1C9l'></tfoot>
          • <legend id='y1C9l'><style id='y1C9l'><dir id='y1C9l'><q id='y1C9l'></q></dir></style></legend>
              1. <i id='y1C9l'><tr id='y1C9l'><dt id='y1C9l'><q id='y1C9l'><span id='y1C9l'><b id='y1C9l'><form id='y1C9l'><ins id='y1C9l'></ins><ul id='y1C9l'></ul><sub id='y1C9l'></sub></form><legend id='y1C9l'></legend><bdo id='y1C9l'><pre id='y1C9l'><center id='y1C9l'></center></pre></bdo></b><th id='y1C9l'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='y1C9l'><tfoot id='y1C9l'></tfoot><dl id='y1C9l'><fieldset id='y1C9l'></fieldset></dl></div>
                  <bdo id='y1C9l'></bdo><ul id='y1C9l'></ul>
                  本文介紹了什么是元標(biāo)記中的初始比例、用戶(hù)可縮放、最小比例、最大比例屬性?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  我在瀏覽一個(gè)網(wǎng)站的源代碼時(shí),發(fā)現(xiàn)了這段代碼.

                  I was going through the source code of a website and found this piece of code.

                  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=1.0, minimum-scale=1.0, maximum-scale=1.0">
                  

                  我想知道這個(gè)初始比例、用戶(hù)可縮放、最小比例、最大比例是什么,這些值是什么意思?并告訴我他們接受的所有價(jià)值觀.

                  I want to know what this initial scale, user-scalable, minimum-scale, maximum-scale are and what does those values mean? And also tell me what all values they accepts.

                  推薦答案

                  它們是視口元標(biāo)記,最適用于移動(dòng)瀏覽器.

                  They are viewport meta tags, and is most applicable on mobile browsers.

                  這意味著,我們告訴瀏覽器我的網(wǎng)站適應(yīng)您的設(shè)備寬度".

                  This means, we are telling to the browser "my website adapts to your device width".

                  這定義了網(wǎng)站的縮放比例,這個(gè)參數(shù)設(shè)置了初始縮放級(jí)別,這意味著1 CSS pixel等于1 viewport pixel.當(dāng)您更改方向或阻止默認(rèn)縮放時(shí),此參數(shù)會(huì)有所幫助.沒(méi)有這個(gè)參數(shù),響應(yīng)式網(wǎng)站將無(wú)法工作.

                  This defines the scale of the website, This parameter sets the initial zoom level, which means 1 CSS pixel is equal to 1 viewport pixel. This parameter help when you're changing orientation, or preventing default zooming. Without this parameter, responsive site won't work.

                  Maximum-scale 定義最大縮放.當(dāng)您訪(fǎng)問(wèn)網(wǎng)站時(shí),最高優(yōu)先級(jí)是maximum-scale=1,并且不允許用戶(hù)縮放.

                  Maximum-scale defines the maximum zoom. When you access the website, top priority is maximum-scale=1, and it won’t allow the user to zoom.

                  Minimum-scale 定義最小縮放.這與上面的工作方式相同,但它定義了最小比例.這很有用,當(dāng) maximum-scale 很大,并且您想設(shè)置 minimum-scale.

                  Minimum-scale defines the minimum zoom. This works the same as above, but it defines the minimum scale. This is useful, when maximum-scale is large, and you want to set minimum-scale.

                  用戶(hù)可縮放分配給 1.0 表示網(wǎng)站允許用戶(hù)放大或縮小.

                  User-scalable assigned to 1.0 means the website is allowing the user to zoom in or zoom out.

                  但是如果你把它分配給user-scalable=no,這意味著網(wǎng)站不允許用戶(hù)放大或縮小.

                  But if you assign it to user-scalable=no, it means the website is not allowing the user to zoom in or zoom out.

                  這篇關(guān)于什么是元標(biāo)記中的初始比例、用戶(hù)可縮放、最小比例、最大比例屬性?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Angular 2: file not found on local .json file(Angular 2:在本地 .json 文件中找不到文件)
                  Input validation with pattern Angular 2(使用模式 Angular 2 進(jìn)行輸入驗(yàn)證)
                  How to change the css class name dynamically in angular 2(如何在角度2中動(dòng)態(tài)更改css類(lèi)名)
                  How to remove default color in input type?(如何刪除輸入類(lèi)型中的默認(rèn)顏色?)
                  How to add click event to dynamically added html element in typescript(如何將點(diǎn)擊事件添加到打字稿中動(dòng)態(tài)添加的html元素)
                  XPath one of multiple attribute values with condition(XPath 具有條件的多個(gè)屬性值之一)
                  <legend id='W7FEX'><style id='W7FEX'><dir id='W7FEX'><q id='W7FEX'></q></dir></style></legend>
                • <i id='W7FEX'><tr id='W7FEX'><dt id='W7FEX'><q id='W7FEX'><span id='W7FEX'><b id='W7FEX'><form id='W7FEX'><ins id='W7FEX'></ins><ul id='W7FEX'></ul><sub id='W7FEX'></sub></form><legend id='W7FEX'></legend><bdo id='W7FEX'><pre id='W7FEX'><center id='W7FEX'></center></pre></bdo></b><th id='W7FEX'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='W7FEX'><tfoot id='W7FEX'></tfoot><dl id='W7FEX'><fieldset id='W7FEX'></fieldset></dl></div>
                    <bdo id='W7FEX'></bdo><ul id='W7FEX'></ul>
                      <tfoot id='W7FEX'></tfoot>

                        <small id='W7FEX'></small><noframes id='W7FEX'>

                          <tbody id='W7FEX'></tbody>

                          • 主站蜘蛛池模板: 免费三级网站 | 午夜国产福利 | 日本中文字幕在线视频 | 日韩精品一区二区三区免费视频 | 亚洲一区二区三区在线视频 | 久久视频这里只有精品 | 国产一级网站 | 亚洲天堂一区二区 | 精品一区久久 | 国产三级做爰高清在线 | 国产一区在线视频 | 欧美视频久久 | 毛片精品 | 在线黄色av| 在线免费国产 | av免费观看网站 | 国产精品久久久久久久免费看 | 国产成人精品网站 | 亚洲av毛片成人精品 | 秋霞一区二区三区 | 日韩av一区二区三区四区 | 天堂色av | 免费黄网站在线观看 | 午夜精品国产 | 亚洲一级片在线观看 | 在线免费看a | 国产一级免费 | 中文字幕精品视频 | 国产寡妇亲子伦一区二区三区四区 | 在线观看日韩欧美 | 亚洲少妇一区 | 日韩专区在线观看 | 国产传媒在线播放 | 亚洲乱码一区二区 | 成人免费黄色片 | 欧美视频一二三区 | 手机福利视频 | 亚州av在线 | 日本一区二区高清 | 羞羞网站在线观看 | 国产精品久久久久久久久久久久久久 |