Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Screen Orientation API

這是一個實驗中的功能
此功能在某些瀏覽器尚在開發中,請參考兼容表格以得到不同瀏覽器用的前輟。

摘要

畫面方向 (Screen Orientation) 與裝置方向 (Device orientation) 略有不同。有時甚至裝置本身不具備方向偵測功能,但裝置的螢幕仍搭載方向功能。如果裝置可測知本身的方向又能控制畫面方向,就能隨時配合 Web Apps 而達到最佳效果。

現有 2 種方法可處理畫面的方向,但均需搭配 CSS 與 JavaScript。第一種方法就是方向的 Media Query。根據瀏覽器視窗為橫放 (寬度大於高度) 或直放 (高度大於寬度) 狀態,而透過 CSS 調整網頁內容的配置。

第二種方法就是 JavaScript Screen Orientation API,可取得畫面目前的方向並進一步鎖定。

根據方向而調整配置

方向改變最常見的情形之一,就是根據裝置的方向而修正內容的配置方式。舉例來說,你可能想將按鈕列拉到與裝置螢幕等長。而透過 Media Query 即可輕鬆達到此效果。

來看看下列 HTML 程式碼範例:

<ul id="toolbar">
  <li>A</li>
  <li>B</li>
  <li>C</li>
</ul>

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis lacinia nisi nec sem viverra vitae fringilla nulla ultricies. In ac est dolor, quis tincidunt leo. Cras commodo quam non tortor consectetur eget rutrum dolor ultricies. Ut interdum tristique dapibus. Nullam quis malesuada est.</p>

CSS 將根據方向的 Media Query,處理畫面方向的特殊樣式:

/* First let's define some common styles */

html, body {
  width : 100%;
  height: 100%;
}

body {
  border: 1px solid black;

  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  font   : 1em sans-serif;
  margin : 0;
  padding: .5em;
}

ul {
  list-style: none;

  font   : 1em monospace;
  margin : 0;
  padding: .5em;

  -moz-box-sizing: border-box;
  box-sizing: border-box;

  background: black;
}

li {
  display: inline-block;
  margin : 0;
  padding: 0.5em;
  background: white;
}

在設定某些通用的樣式之後,即可針對方向定義特殊條件:

/* For portrait, we want the tool bar on top */

@media screen and (orientation: portrait) {
  #toolbar {
    width: 100%;
  }
}

/* For landscape, we want the tool bar stick on the left */

@media screen and (orientation: landscape) {
  #toolbar {
    position: fixed;
    width: 2.65em;
    height: 100%;
  }

  p {
    margin-left: 2em;
  }

  li + li {
    margin-top: .5em;
  }
}

結果如下所示 (若無法顯示,可至本文右上角切換回英文原文觀看):

Portrait Landscape

注意:方向 Media Query 其實是以瀏覽器視窗 (或 iframe) 的方向為準,而非裝置本身的方向。

鎖定畫面方向

警告:此 API 仍屬實驗性質,目前仍具備 moz 前綴而僅能用於 Firefox OSFirefox for Android

某些裝置 (主要為行動裝置) 可根據本身方向而動態改變畫面的方向,讓使用者隨時閱讀畫面上的資訊。這種動作對文字類的內容影響不大,但某些內容就無法順利套用此功能。舉例來說,若遊戲需要裝置方向的相關資訊,就可能因為方向變化而發生混亂情形。

而 Screen Orientation API 即可用以避免或處理這類變化。

監聽方向變化

只要裝置改變了畫面方向與本身方向,就會觸發 orientationchange 事件,再由 screen.orientation 屬性讀取之。

screen.addEventListener("orientationchange", function () {
  console.log("The orientation of the screen is: " + screen.orientation);
});

避免方向改變

任何 Web Apps 均可鎖定畫面以符合本身需求。screen.lockOrientation() 函式可鎖定畫面方向;screen.unlockOrientation() 函式可解鎖畫面方向。

screen.lockOrientation() 將接受 1 組字串或系列字串,以定義畫面鎖定的方向。有效字串為:「portrait-primary」、「portrait-secondary」、「landscape-primary」、「landscape-secondary」、「portrait」、「landscape」。另可參閱 lockOrientation 進一步了解這些有效值。

screen.lockOrientation('landscape');

注意:畫面鎖定功能將依 Web Apps 而有所不同。如果 App A 鎖定為 landscape;App B 鎖定為 portrait,則此 2 款 Apps 均將維持自己的方向。所以不論如何切換 A 與 B,均不會觸發 orientationchange 事件。

但若必須改變方向以滿足畫面鎖定的需求,則鎖定方向時就會觸發 orientationchange 事件。

另可參閱

文件標籤與貢獻者

 此頁面的貢獻者: MashKao
 最近更新: MashKao,