HTML 标签的 usemap 属性

HTML <img> 标签的 usemap 属性

HTML <img> 标签

定义和用法

usemap 属性将图像定义为客户端图像映射。

图像映射指的是带有可点击区域的图像。

usemap 属性与 <map> 元素的 name 或 id 属性相关联,以建立 <img> 与 <map> 之间的关系。

HTML 4.01 与 HTML5 之间的差异

没有。

<!-- 用QQ邮箱阅读空间订阅我的博客 -->
<a href="http://mail.qq.com/cgi-bin/feed?u=http://blog.csdn.net/qiuzhping" target="_blank">
<img src="http://res.mail.qq.com/zh_CN/htmledition/images/rss/icon_sub01.gif" alt=""  border="0" />
</a><!-- 用QQ邮箱阅读空间订阅我的博客 -->

实例

客户器端图像映射:

<img src="planets.gif" alt="Planets" usemap="#planetmap" />
<img src="<%=graphURL%>" name="图片" width=600 height=450 border=0
			usemap="#<%= filename %>">

<map name="planetmap">
  <area href="sun.htm" shape="rect" coords="0,0,110,260">Sun</a>
  <area href="mercur.htm" shape="circle" coords="129,161,10">Mercury</a>
  <area href="venus.htm" shape="circle" coords="180,139,14">Venus</a>
</map> 

你可能感兴趣的:(html,html5,map)