html map標(biāo)簽是什么?html map標(biāo)簽的結(jié)構(gòu)及具體使用方法詳細(xì)說(shuō)明
發(fā)表時(shí)間:2023-09-06 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]html map標(biāo)簽是什么?html map標(biāo)簽的結(jié)構(gòu)及具體使用方法又有哪些?下面本篇文章主要為大家講述了html map標(biāo)簽的含義和html map標(biāo)簽的屬性的一些解釋?zhuān)有html map標(biāo)簽的具體用法。首先讓我們來(lái)看一下html map標(biāo)簽是什么:html map標(biāo)簽:定義一個(gè)客戶端圖像映射...
html map標(biāo)簽是什么?html map標(biāo)簽的結(jié)構(gòu)及具體使用方法又有哪些?下面本篇文章主要為大家講述了html map標(biāo)簽的含義和html map標(biāo)簽的屬性的一些解釋?zhuān)有html map標(biāo)簽的具體用法。
首先讓我們來(lái)看一下html map標(biāo)簽是什么:
html map標(biāo)簽:定義一個(gè)客戶端圖像映射。圖像映射(image-map)指帶有可點(diǎn)擊區(qū)域的一幅圖像。
定義map:
<map id="im_map" name="im_map">
<area shape="rect" coords="0,0,100,100" href="url.html" />
</map>
map標(biāo)簽定義map,area標(biāo)簽定義可點(diǎn)擊的熱點(diǎn),area屬性;
shape:定義熱點(diǎn)形狀,可選參數(shù) rect(矩形)、circle(圓形)、poligon(自定義形狀)。
coords:定義形狀路徑;
當(dāng)shape=rect時(shí),四個(gè)數(shù)字依次為:起點(diǎn)X、起點(diǎn)Y、終點(diǎn)X、終點(diǎn)Y
當(dāng)shape=circle時(shí),三個(gè)數(shù)字依次為:中心點(diǎn)X、中心點(diǎn)Y、半徑
當(dāng)shape=poligon時(shí),可定義多個(gè)路徑點(diǎn),依次為:起點(diǎn)X、起點(diǎn)Y、路徑1X、路徑1Y、路徑2X、路徑2Y......
href定義點(diǎn)擊跳轉(zhuǎn)的地址。
html map標(biāo)簽必需的屬性:
id : unique_name : 為 map 標(biāo)簽定義唯一的名稱(chēng)。
html map標(biāo)簽可選的屬性:
name : mapname : 為 image-map 規(guī)定的名稱(chēng)。
map標(biāo)簽在HTML中的結(jié)構(gòu):
1、coords的對(duì)應(yīng)坐標(biāo)不用變,只需在JS里面改變其比例就OK!
<div class="map_img">
<img class="mapImg" usemap="mapName" src="isphoto/abc.png" alt="" style="width: 450px">
<map name="mapName">
<!-- 方形區(qū)域?qū)懛?-->
<!-- <area shape="rect" coords="605,250,660,305" target="_blank" href ="javascript:alert(1);" alt=""/> -->
<area shape="circle" coords="633,276,28" target="_blank" href ="javascript:alert('汽車(chē)圖標(biāo)');" alt=""/>
</map>
</div>
2、如果有多張圖片,一張圖片對(duì)應(yīng)一個(gè)map,class不用變,改變map的name值和對(duì)應(yīng)的usemap值就好。name=usemap他們倆是一對(duì)CP哦,不要分開(kāi)它們,給他們一樣的值。
<div class="map_img">
<img class="mapImg" usemap="mapName" src="isphoto/abc.png" alt="" style="width: 450px">
<map name="mapName">
<area shape="circle" coords="633,276,28" target="_blank" href ="javascript:alert('汽車(chē)圖標(biāo)');" alt=""/>
</map>
<!-- 一張圖片對(duì)應(yīng)一個(gè)name和usemap -->
<img class="mapImg" usemap="mapName2" src="isphoto/abc.png" alt="" style="width: 450px">
<map name="mapName2">
<area shape="circle" coords="633,276,28" target="_blank" href ="javascript:alert('第二張圖的汽車(chē)圖標(biāo)');" alt=""/>
</map>
</div>
html<map>標(biāo)簽常用在為圖像的某區(qū)域添加超鏈接!
用法如下:
<img src ="planets.gif" alt="無(wú)法顯示此圖像" usemap ="#planetmap" />
<map id ="planetmap" name="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>
usemap屬性獲取<map>標(biāo)簽信息,<area> 標(biāo)簽定義一個(gè)鏈接區(qū)域,shape屬性定義區(qū)域形狀,coords屬性定義鏈接區(qū)域的起點(diǎn)坐標(biāo)和終點(diǎn)坐標(biāo)
注釋?zhuān)篴rea 元素永遠(yuǎn)嵌套在 map 元素內(nèi)部。area 元素可定義圖像映射中的區(qū)域。
注釋?zhuān)?lt;img>中的 usemap 屬性可引用 <map> 中的 id 或 name 屬性(取決于瀏覽器),所以我們應(yīng)同時(shí)向 <map> 添加 id 和 name 屬性。
【相關(guān)推薦】
HTML5<progress>標(biāo)簽是什么意思?HTML5<progress>標(biāo)簽的基本用法詳解
html textarea是什么意思?如何獲取textarea標(biāo)簽中的換行符和空格?
以上就是html map標(biāo)簽是什么?html map標(biāo)簽的結(jié)構(gòu)及具體使用方法詳解的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語(yǔ),涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。