當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.
經過優(yōu)化可在移動設備上正常顯示的網頁應在文檔標頭中包含元視口,指定如下內容:width=device-width, initial-scale=1
.
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.如果網頁未指定視口,則移動瀏覽器將以800至1024 CSS像素的后備寬度呈現(xiàn)該網頁。系統(tǒng)會調整網頁的比例系數,以便網頁與顯示屏大小相協(xié)調,這就要求用戶在與網頁互動之前先進行縮放。
元視口代碼會為瀏覽器提供指示,說明如何控制網頁的尺寸和比例,且文檔標頭中應包含此代碼。
The viewport can be set to a specific width, such aswidth=320
或width=1024
。雖然我們不建議這樣做,但這能有效確保具有固定尺寸的網頁能按預期顯示。
Use meta-viewport valueswidth=device-width
可指示網頁與屏幕寬度(以設備無關像素為單位)進行匹配。這樣,網頁就可以重排內容以匹配不同的屏幕尺寸。
有些瀏覽器(包括iOS和Windows Phone)在旋轉為橫向模式時會保持網頁寬度不變,并且會縮放(而非重排)網頁以填充屏幕。添加屬性initial-scale=1
均可指示瀏覽器將CSS像素與設備無關像素的比例設為1:1(而不用考慮設備的屏幕方向),并且可讓網頁利用整個橫向寬度。
Web pages must adapt to different widths to use the response viewport. For suggestions, please refer to our調整內容的尺寸,使其符合視口設置的建議。
minimum-scale
、maximum-scale
、user-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
樣式搭配使用。
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.