你可能不知道的10個HTML5新功能

Element.classList

classList API提供了咱們多年來一種使用JavaScript工具庫來實現的控制CSS的基本功能:php

// 增長一個CSS類
myElement.classList.add("newClass");

// 刪除一個CSS類
myElement.classList.remove("existingClass");

// 檢查是否擁有一個CSS類
myElement.classList.contains("oneClass");

// 反轉一個CSS類的有無
myElement.classList.toggle("anotherClass");

這個新出現的API的主要價值體現就是:簡單實用。讀一下這篇文章,裏面介紹了其它幾個classList功能特徵。html

ContextMenu API

這個新的ContextMenu API很是的有用:它並不會替換原有的右鍵菜單,而是將你的自定義右鍵菜單添加到瀏覽器的右鍵菜單裏:html5

<section contextmenu="mymenu">

  <!-- 添加菜單 -->
  <menu type="context" id="mymenu">
      <menuitem label="Refresh Post" onclick="window.location.reload();" icon="/images/refresh-icon.png"></menuitem>
      <menu label="Share on..." icon="/images/share_icon.gif">
        <menuitem label="Twitter" icon="/images/twitter_icon.gif" onclick="goTo('//twitter.com/intent/tweet?text=' + document.title + ':  ' + window.location.href);"></menuitem>
        <menuitem label="Facebook" icon="/images/facebook_icon16x16.gif" onclick="goTo('//facebook.com/sharer/sharer.php?u=' + window.location.href);"></menuitem>
      </menu>
    </menu>
</section>

須要注意的是,最好使用JavaScript動態的建立這些菜單代碼,由於菜單事件最終要調用JavaScript執行任務,若是用戶禁止了JavaScript,右鍵菜單也不會生成,他同時也不會看到菜單。程序員

Element.dataset

使用dataset API,程序員能夠方便的獲取或設置data-*自定義屬性:web

/*  如下面的代碼爲例

    <div id="myDiv" data-name="myDiv" data-id="myId" data-my-custom-key="This is the value"></div>

*/

// 獲取元素
var element = document.getElementById("myDiv");

// 獲取id
var id = element.dataset.id;

// 讀取 "data-my-custom-key" 的值
var customKey = element.dataset.myCustomKey;

// 修改爲其它值
element.dataset.myCustomKey = "Some other value";

    // 結果是:
    //    <div id="myDiv" data-name="myDiv" data-id="myId" data-my-custom-key="Some other value"></div>

無需多說,跟classList同樣,簡單實用編程

window.postMessage API

即便是IE8也對postMessage API支持多年了,postMessage API的功能是可讓你在兩個瀏覽器窗口或iframe之間傳遞信息數據:canvas

// 從A域上的窗口或iframe,發送一條信息到B域中的窗口或ifame
var iframeWindow = document.getElementById("iframe").contentWindow;
iframeWindow.postMessage("來自第一個窗口的問候!");

// 在第二個不一樣域上的窗口或iframe接收消息
window.addEventListener("message", function(event) {
    // 檢驗域的合法性
    if(event.origin == "http://www.webhek.com") {
        // 輸出日誌信息
        console.log(event.data);

        // 反饋消息
        event.source.postMessage("你也好嗎!");
    }
]);

消息體只能是字符串,但你能夠用JSON.stringify和JSON.parse將消息轉換成更有意義的數據體!api

autofocus屬性

autofocus屬性可以讓BUTTON, INPUT, 或 TEXTAREA元素在頁面加載完成時自動成爲頁面焦點:瀏覽器

<input autofocus="autofocus" />
<button autofocus="autofocus">Hi!</button>
<textarea autofocus="autofocus"></textarea>

在像谷歌搜索頁面那樣的有固定模式的地方,autofocus屬性是最理想的一個功能。ide

瀏覽器對各個API的支持稍有不一樣,因此,在使用前先檢查一下對這些特徵的支持狀況。再花點時間閱讀一下各個API的詳細說明,相信你會有更多的發現。

全屏API接口

強大的全屏API接口能讓程序員經過編程啓動瀏覽器進入全屏模式,並請求用戶的容許:

// Find the right method, call on correct element
function launchFullScreen(element) {
  if(element.requestFullScreen) {
    element.requestFullScreen();
  } else if(element.mozRequestFullScreen) {
    element.mozRequestFullScreen();
  } else if(element.webkitRequestFullScreen) {
    element.webkitRequestFullScreen();
  }
}

// Launch fullscreen for browsers that support it!
launchFullScreen(document.documentElement); // the whole page
launchFullScreen(document.getElementById("videoElement")); // any individual element

任何頁面元素均可以成爲全屏輸出的目標,HTML5裏甚至還提供了一個CSS僞類來讓程序員在瀏覽器全屏時控制全屏元素的樣式。當你在開發遊戲時這個全屏API接口特別有用;尤爲像BananaBread這樣的槍擊遊戲中。

閱讀教程

頁面可見性API接口

頁面可見性API接口提供給用了一個監聽事件,這個事件能告訴程序員當前頁面是不是用瀏覽器中激活的標籤頁/窗口、是不是用戶正在觀看的頁面,它還能告訴程序員用戶什麼時候切換頁面、再也不觀看本頁面/窗口:

// Adapted slightly from Sam Dutton
// Set name of hidden property and visibility change event
// since some browsers only offer vendor-prefixed support
var hidden, state, visibilityChange; 
if (typeof document.hidden !== "undefined") {
  hidden = "hidden";
  visibilityChange = "visibilitychange";
  state = "visibilityState";
} else if (typeof document.mozHidden !== "undefined") {
  hidden = "mozHidden";
  visibilityChange = "mozvisibilitychange";
  state = "mozVisibilityState";
} else if (typeof document.msHidden !== "undefined") {
  hidden = "msHidden";
  visibilityChange = "msvisibilitychange";
  state = "msVisibilityState";
} else if (typeof document.webkitHidden !== "undefined") {
  hidden = "webkitHidden";
  visibilityChange = "webkitvisibilitychange";
  state = "webkitVisibilityState";
}

// Add a listener that constantly changes the title
document.addEventListener(visibilityChange, function(e) {
  // Start or stop processing depending on state

}, false);

閱讀教程
觀看演示

getUserMedia接口API

getUserMedia API是個很是有趣的接口!使用這個API,加上<video>和<canvas>標記,你能夠在瀏覽器裏進行拍照!

// Put event listeners into place
window.addEventListener("DOMContentLoaded", function() {
  // Grab elements, create settings, etc.
  var canvas = document.getElementById("canvas"),
    context = canvas.getContext("2d"),
    video = document.getElementById("video"),
    videoObj = { "video": true },
    errBack = function(error) {
      console.log("Video capture error: ", error.code); 
    };

  // Put video listeners into place
  if(navigator.getUserMedia) { // Standard
    navigator.getUserMedia(videoObj, function(stream) {
      video.src = stream;
      video.play();
    }, errBack);
  } else if(navigator.webkitGetUserMedia) { // WebKit-prefixed
    navigator.webkitGetUserMedia(videoObj, function(stream){
      video.src = window.webkitURL.createObjectURL(stream);
      video.play();
    }, errBack);
  }
}, false);

你必定要在之後的應用中試試這個HTML5新功能,經過瀏覽器進行各類各樣的交互的技術已經愈來愈流行了!

閱讀教程
觀看演示

電池接口API

電池接口API很顯然是專門爲手機裏的瀏覽器應用設計的,它提供了讀取設備裏的電池電量和充電狀態的功能:

// Get the battery!
var battery = navigator.battery || navigator.webkitBattery || navigator.mozBattery;

// A few useful battery properties
console.warn("Battery charging: ", battery.charging); // true
console.warn("Battery level: ", battery.level); // 0.58
console.warn("Battery discharging time: ", battery.dischargingTime);

// Add a few event listeners
battery.addEventListener("chargingchange", function(e) {
  console.warn("Battery charge change: ", battery.charging);
}, false);

這些HTML5提供的電池接口API能直接將電池電量狀態告訴web應用,而不須要藉助電池傳感器或第三方應用。雖然不是一個特別大的功能,但絕對是一個有用的接口。

閱讀教程
觀看演示

頁面預加載(Link prefetch)API

頁面預加載(Link prefetch)API功能可以讓瀏覽器在後臺靜悄悄的預先加載/讀取一些頁面或資源到當前頁面,給用戶一個順滑的使用體驗:

<!-- 預加載一個頁面 -->
<link rel="prefetch" href="http://www.webhek.com/link-prefetch/" />

<!-- 預加載一個圖片 -->
<link rel="prefetch" href="http://www.webhek.com/wordpress/wp-content/themes/webhek2/images/follow-us.jpg" />

閱讀教程

就是這5個你須要知道和嘗試的新HTML5 API。請注意,這些新功能在幾年以內就會流行起來,因此,越早接受這些API,你就能更好的創造出最前沿技術的Web應用。花幾分鐘試試這些新功能,看看你能用它們實現什麼樣的效果!


本文合併了 《你不知道的5個HTML5新功能》和《你不知道的5個HTML5新功能(第二輯)

相關文章
相關標籤/搜索