DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> 關於HTML >> HTML5語言的28個新特性學習
HTML5語言的28個新特性學習
編輯:關於HTML     

1. 新的Doctype

盡管使用<!DOCTYPE html>,即使浏覽器不懂這句話也會按照標准模式去渲染

2. Figure元素

用<figure>和<figcaption>來語義化地表示帶標題的圖片

  1. <figure>
  2. <img src=”path/to/image” alt=”About
    image” />
  3. <figcaption>
  4. <p>This is an image of something interesting. </p>
  5. </figcaption>
  6. </figure>

3. 重新定義的<small>

<small>已經被重新定義了,現在被用來表示小的排版,如網站底部的版權聲明

4. 去掉link和script標簽裡面的type屬性

5. 加/不加 括號

HTML5沒有嚴格的要求屬性必須加引號,閉合不閉合,但是建議加上引號和閉合標簽

6. 讓你的內容可編輯,只需要加一個contenteditable屬性

7. Email Inputs

如果我們給Input的type設置為email,浏覽器就會驗證這個輸入是否是email類型,當然不能只依賴前端的校驗,後端也得有相應的校驗

8. Placeholders

這個input屬性的意義就是不必通過javascript來做placeholder的效果了

9. Local Storage

使用Local Storage可以永久存儲大的數據片段在客戶端(除非主動刪除),目前大部分浏覽器已經支持,在使用之前可以檢測一下window.localStorage是否存在

10. 語義化的header和footer

11. 更多的HTML5表單特性

12. IE和HTML5

默認的,HTML5新元素被以inline的方式渲染,不過可以通過下面這種方式讓

其以block方式渲染

  1. header, footer, article, section, nav, menu, hgroup {
  2. display: block;
  3. }

不幸的是IE會忽略這些樣式,可以像下面這樣fix:

  1. document.createElement(”article”);
  2. document.createElement(”footer”);
  3. document.createElement(”header”);
  4. document.createElement(”hgroup”);
  5. document.createElement(”nav”);
  6. document.createElement(”menu”);

13. hgroup

一般在header裡面用來將一組標題組合在一起,如

  1. <header>
  2. <hgroup>
  3. <h1> Recall Fan Page </h1>
  4. <h2> Only for people who want the memory of a lifetime. </h2>
  5. </hgroup>
  6. </header>

14. Required屬性

required屬性定義了一個input是否是必須的,你可以像下面這樣聲明

  1. <input type=”text” name=”someInput” required>
  2. <!--或者-->
  3. <input type=”text” name=”someInput” required=”required”>

15. Autofocus屬性

正如它的詞義,就是聚焦到輸入框裡面

  1. <input type=”text” name=”someInput” placeholder=”Douglas Quaid” required autofocus>

16. Audio支持

HTML5提供了<audio>標簽,你不需要再按照第三方插件來渲染音頻,大多數現代浏覽器提供了對於HTML5 Audio的支持,不過目前仍舊需要提供一些兼容處理,如

  1. <audio autoplay=”autoplay” controls=”controls”>
  2. <source src=”file.ogg” /><!–FF–>
  3. <source src=”file.mp3″ /><!–Webkit–>
  4. <a href=”file.mp3″>Download this file.</a>
  5. </audio>

17. Video支持

和Audio很像,<video>標簽提供了對於video的支持,由於HTML5文檔並沒有給video指定一個特定的編碼,所以浏 覽器去決定要支持哪些編碼,導致了很多不一致。Safari和IE支持H.264編碼的格式,Firefox和Opera支持Theora和Vorbis 編碼的格式,當使用HTML5 video的時候,你必須都提供:

  1. <video controls preload>
  2. <source src=”cohagenPhoneCall.ogv” type=”video/ogg; codecs=’vorbis,
    theora’” />
  3. <source src=”cohagenPhoneCall.mp4″ type=”video/mp4;
    ’codecs=’avc1.42E01E, mp4a.40.2′” />
  4. <p> Your browser is old. <a href=”cohagenPhoneCall.mp4″>Download this video instead.</a> </p>
  5. </video>

18. 預加載視頻

preload屬性就像它的字面意思那麼簡單,你需要決定是否需要在頁面加載的時候去預加載視頻

  1. <video preload>

19. 顯示視頻控制

  1. <video preload controls>

20. 正則表達式

由於pattern屬性,我們可以在你的markup裡面直接使用正則表達式了

  1. <form action=”" method=”post”>
  2. <label for=”username”>Create a Username: </label>
  3. <input type=”text” name=”username” id=”username” placeholder=”4 <> 10″ pattern=”[A-Za-z]{4,10}” autofocus required>
  4. <button type=”submit”>Go </button>
  5. </form>

21. 檢測屬性支持

除了Modernizr之外我們還可以通過javascript簡單地檢測一些屬性是否支持,如:

  1. <script>
  2. if (!’pattern’ in document.createElement(’input’) ) {
  3. // do client/server side validation
  4. }

  5. </script>

22. Mark元素

把<mark>元素看做是高亮的作用,當我選擇一段文字的時候,javascript對於HTML的markup效果應該是這樣的:

  1. <h3> Search Results </h3>
  2. <p> They were interrupted, just after Quato said, <mark>”Open your Mind”</mark>. </p>

23. 什麼時候用<div>

HTML5已經引入了這麼多元素,那麼div我們還要用嗎?div你可以在沒有更好的元素的時候去用。

24. 想立即使用HTML5?

不要等2022了,現在就可以使用了,just do it.

25. 哪些不是HTML5

1)SVG

2)CSS3

3)Geolocation

4)Client Storage

5)Web Sockets

26. Data屬性

  1. <div id=”myDiv” data-custom-attr=”My Value”> Bla Bla </div>

CSS中使用:

  1. <style>
  2. h1:hover:after {
  3. content: attr(data-hover-response);
  4. color: black;
  5. position: absolute;
  6. left: 0;
  7. }
  8. </style>
  9. <h1 data-hover-response=”I Said Don’t Touch Me!”> Don’t Touch Me </h1>

27. Output元素

<output>元素用來顯示計算結果,也有一個和label一樣的for屬性

28. 用Range Input來創建滑塊

HTML5引用的range類型可以創建滑塊,它接受min, max, step和value屬性可以使用css的:before和:after來顯示min和max的值

  1. <input type=”range” name=”range” min=”0″ max=”10″ step=”1″ value=”">
  2. <style>
  3. input[type=range]:before { content:
    attr(min); padding-right: 5px;
  4. }
  5. input[type=range]:after { content:
    attr(max); padding-left: 5px;}
  6. </style>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved