HTML图片热区怎么做的?
2个回答
展开全部
<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" />
<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" />
<area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" />
<area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" />
</map>
shape="circle" coords="x,y,r" 区域为圆形 后面是圆心坐标和以像素为单位的半径
shape="rect" coords="x1,y1,x2,y2" 区域为矩形 矩形的左上右下两点的坐标
shape="poly" coords="x1,y1,x2,y2,x3,y3..." 区域为多边形 多边形所有顶点的坐标
以上所有坐标都是相对于图形img左上脚坐标而言的
<img>中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map> 添加 id 和 name 属性。
其中如果area划分的区域部分交叉则前面的area覆盖后面的area.即第一个area覆盖第二个area。
<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" />
<area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" />
<area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" />
</map>
shape="circle" coords="x,y,r" 区域为圆形 后面是圆心坐标和以像素为单位的半径
shape="rect" coords="x1,y1,x2,y2" 区域为矩形 矩形的左上右下两点的坐标
shape="poly" coords="x1,y1,x2,y2,x3,y3..." 区域为多边形 多边形所有顶点的坐标
以上所有坐标都是相对于图形img左上脚坐标而言的
<img>中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map> 添加 id 和 name 属性。
其中如果area划分的区域部分交叉则前面的area覆盖后面的area.即第一个area覆盖第二个area。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询