html map标签有哪些?html map标签的构造及具体运用办法详解
第一让我们来看一下html map标签是啥:
html map标签:定义一个客户端图像映射。图像映射(image-map)指带有可点击区域的一幅图像。
定义map:
<map id="im_map" name="im_map"> <area shape="rect" coords="0,0,100,100" href="url.html" /> </map>
map标签定义map,area标签定义可点击的热点,area属性;
shape:定义热点外形,可选参数 rect(矩形)、circle(圆形)、poligon(自定义外形)。
coords:定义外形途径;
当shape=rect时,四个数字顺次为:起点X、起点Y、终点X、终点Y
当shape=circle时,三个数字顺次为:中心点X、中心点Y、半径
当shape=poligon时,可定义多个途径点,顺次为:起点X、起点Y、途径1X、途径1Y、途径2X、途径2Y......
href定义点击跳转的地址。
html map标签必需的属性:
id : unique_name : 为 map 标签定义独一的名称。
html map标签可选的属性:
name : mapname : 为 image-map 规定的名称。
map标签在HTML中的构造:
1、coords的对应坐标不消变,只需在JS里面改动其比例就OK!
<div class="map_img"> <img class="mapImg" usemap="mapName" src="isphoto/abc.png" alt="" style="width: 450px"> <map name="mapName"> <!-- 方形区域写法 --> <!-- <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('汽车图标');" alt=""/> </map> </div>
2、假如有多张图片,一张图片对应一个map,class不消变,改动map的name值和对应的usemap值就好。name=usemap他们俩是一对CP哦,不要分开它们,给他们一样的值。
<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('汽车图标');" alt=""/> </map> <!-- 一张图片对应一个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('第二张图的汽车图标');" alt=""/> </map> </div>
html<map>标签常用在为图像的某区域增加超链接!
用途如下:
<img src ="planets.gif" alt="没法显示此图像" 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>标签信息,<area> 标签定义一个链接区域,shape属性定义区域外形,coords属性定义链接区域的起点坐标和终点坐标
注释:area 元素永久嵌套在 map 元素内部。area 元素可定义图像映射中的区域。
注释:<img>中的 usemap 属性可援用 <map> 中的 id 或 name 属性(取决于阅读器),所以我们应同时向 <map> 增加 id 和 name 属性。
【相关引荐】
HTML5<progress>标签是啥意思?HTML5<progress>标签的根本用途详解
html textarea是啥意思?怎样猎取textarea标签中的换行符和空格?
以上就是html map标签是啥?html map标签的构造及详细使用办法详解的具体内容,更多请关注百分百源码网其它相关文章!