国产强奷老师在线播放_日韩拍中文字幕无码_国产欧美Va欧美Va在线_亚洲午夜剧场av_欧美日韩一区蜜臀在线播放_JUX被夫上司欺辱的人妻_最近最新的日本字幕MV在线观看_999久久久精品国产_日韩伦理电影中文在线观看免费网_两个裸男脱了内裤互摸的视频

On this page

當PageSpeed Insights檢測到您的網頁未指定視口,或者指定的視口不適合不同設備時,就會觸發(fā)此規(guī)則。

概覽

Viewport can control how web pages are displayed on mobile devices. If no viewport is specified, the mobile device renders the Web page to the width of a typical desktop screen and adjusts the Web page to fit the screen size. By setting the viewport, you can control the width and scaling of web pages on different devices.

?
Left: Web page with no meta-viewport specified.
Right: A Web page that specifies a viewport that matches the width of the device.

建議

經過優(yōu)化可在移動設備上正常顯示的網頁應在文檔標頭中包含元視口,指定如下內容:width=device-width, initial-scale=1.

其他信息

術語:

  • Hardware pixel: The physical pixel of the display. For example, the iPhone 5 comes with a screen with 640 horizontal hardware pixels.
  • Device-independent pixels (dip): under normal visual distance, it conforms to uniform參考像素的設備像素比例,此像素在所有設備上大小幾乎相同。iPhone 5的設備無關像素寬度為320。
  • CSS像素:用于頁面布局的單位,由視口控制。樣式的像素尺寸(例如width: 100px) is specified in units of CSS pixels. The ratio of CSS pixels to device-independent pixels is the scale factor or zoom level of the web page.

Desktop Web Pages on Mobile Devices

如果網頁未指定視口,則移動瀏覽器將以800至1024 CSS像素的后備寬度呈現(xiàn)該網頁。系統(tǒng)會調整網頁的比例系數,以便網頁與顯示屏大小相協(xié)調,這就要求用戶在與網頁互動之前先進行縮放。

元視口代碼

元視口代碼會為瀏覽器提供指示,說明如何控制網頁的尺寸和比例,且文檔標頭中應包含此代碼。

固定寬度的視口

The viewport can be set to a specific width, such aswidth=320width=1024。雖然我們不建議這樣做,但這能有效確保具有固定尺寸的網頁能按預期顯示。

響應視口

Use meta-viewport valueswidth=device-width可指示網頁與屏幕寬度(以設備無關像素為單位)進行匹配。這樣,網頁就可以重排內容以匹配不同的屏幕尺寸。

有些瀏覽器(包括iOS和Windows Phone)在旋轉為橫向模式時會保持網頁寬度不變,并且會縮放(而非重排)網頁以填充屏幕。添加屬性initial-scale=1均可指示瀏覽器將CSS像素與設備無關像素的比例設為1:1(而不用考慮設備的屏幕方向),并且可讓網頁利用整個橫向寬度。

Contrast
Left: iPhone 5 rotateswidth=device-width,橫向寬度變?yōu)?20像素。
右圖:iPhone 5旋轉width=device-width, initial-scale=1The lateral width becomes 568 pixels.

Web pages must adapt to different widths to use the response viewport. For suggestions, please refer to our調整內容的尺寸,使其符合視口設置的建議。

其他注意事項

Please avoid usingminimum-scale、maximum-scaleuser-scalable

您可以設置縮放級別的下限和上限,也可以徹底禁止用戶縮放視口。這些選項會對可訪問性造成負面影響,因此一般情況下您應避免使用這些選項。

@ viewport

Although meta-viewport code is widely supported, it is not yet a formal standard. This action will act as aCSS Device Adaptation規(guī)范的一部分納入CSS。本規(guī)范最終定稿并廣泛實施之前,作者應繼續(xù)使用元視口代碼,從而確保兼容性。您可以單獨使用,也可以與相應的@viewport樣式搭配使用。

Resources:

Except as other written, the content of this page is licensed under theCreative Commons Attribution 3.0 License, and code samples are licensed under theApache 2.0 License. For details, see our?Site Policies.