走進HTML5入門到精通:<area>標籤

來源:互聯網
上載者:User
關鍵字 標籤 HTML5 入門到精通

<area> 標籤

定義和用法

<area> 標籤定義影像地圖中的區域。

HTML 4.01 與 HTML 5 之間的差異

HTML 5 有一些新的屬性,且不再支援 HTML 4.01 的一些屬性。

例子:

<img src ="planets.gif" alt="Planets" usemap ="#planetmap" />
<map id ="planetmap">
<area shape ="rect" coords ="0,0,82,126" href ="sun.htm" alt="Sun" />
<area shape ="circle" coords ="90,58,3" href ="mercur.htm" alt="Mercury" />
<area shape ="circle" coords ="124,58,8" href ="venus.htm" alt="Venus" />
</map>

屬性

屬性 描述 4 5 alt 定義此區域的替換文本。 如果 href 存在,則該屬性是必需的。 僅在 href 屬性存在時使用。 4 5 coords 定義可點擊區域的座標。 4 5 href 定義此區域的目標 URL。 4 5 hreflang 規定目標 URL的基準語言。 僅在 href 屬性存在時使用。 4 5 nohref 不贊成。 從影像地圖排除一個區域。 4   media 規定目標 URL的媒介類型。 預設值:all。 僅在 href 屬性存在時使用。   5 ping 由空格分隔的 URL清單,當使用者點擊該連結時,這些 URL會獲得通知。 僅在 href 屬性存在時使用。   5 rel 規定當前文檔與目標 URL之間的關係。 僅在 href 屬性存在時使用。   5 shape 規定區域的形狀。 4 5 target 在何處打開目標 URL。 4 5 type 規定目標 URL的 MIME 類型。 僅在 href 屬性存在時使用。   5

標準屬性

class, contenteditable, coNtextmenu, dir, draggable, id, irrelevant,
lang, ref, registrationmark, tabindex, template, title

如需完整的描述,請訪 HTML 5 中標準屬性。

事件屬性

onabort, onbeforeunload, onblur, onchange, onclick, oncoNtextmenu,
ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover,
ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup,
onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout,
onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload

如需完整的描述,請訪 HTML 5 中事件屬性。

TIY

創建影像地圖,代碼如下:

<html>
<body>
<p>請點擊圖像上的星球,把它們放大。 </p>
<img
src="/i/eg_planets.jpg"
border="0" usemap="#planetmap"
alt="Planets" />
<map name="planetmap" id="planetmap">
<area
shape="circle"
coords="180,139,14"
href ="/example/html/venus.html"
target ="_blank"
alt="Venus" />
<area
shape="circle"
coords="129,161,10"
href ="/example/html/mercur.html"
target ="_blank"
alt="Mercury" />
<area
shape="rect"
coords="0,0,110,260"
href ="/example/html/sun.html"
target ="_blank"
alt="Sun" />
</map>
<p><b>注釋:</b>img 元素中的 "usemap" 屬性引用 map 元素中的 "id" 或 "name" 屬性(根據瀏
覽器),所以我們同時向 map 元素添加了 "id" 和 "name" 屬性。 </p>
</body>
</html>

本例顯示如何創建帶有可供點擊區域的影像地圖。 其中的每個區域都是一個超級連結。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.