怎么在一个图片中做多个链接呢?
热点链接可以帮你解决。这种效果的实质是把一幅图片划分为不同的热点区域,再让不同的区域进行超链接。要完成地图区域超链接要用到三种标签:<img><map><area>。
???? <img src="图形文件名" usemap="#图的名称">
???? <map name="图的名称">
???? <area shape=形状 coords=区域座标列表 href="URL资源地址">
????? <!--可根据需要定义多少个热点区域-->
????? <area shape=形状 coords=区域座标列表 href="URL资源地址">
???? </map>
【1】shape -- 定义热点形状
????????? shape=rect:?? 矩形
????????? shape=circle:圆形?
????????? shape=poly:?? 多边形?
【2】coords -- 定义区域点的坐标
???? a.矩形:必须使用四个数字,前两个数字为左上角座标,后两个数字为右下角座标
???????? 例:<area shape=rect coords=100,50,200,75 href="URL">
???? b.圆形:必须使用三个数字,前两个数字为圆心的座标,最后一个数字为半径长度
???????? 例:<area shape=circle coords=85,155,30 href="URL">?
???? c.任意图形(多边形):将图形之每一转折点座标依序填入
???????? 例:<area shape=poly coords=232,70,285,70,300,90,250,90,200,78 href="URL">
demo :?
?? <img src="../menu.gif" width="204" height="510" border="0" usemap="#Map" />
<map name="Map" id="Map">
??? <area shape="rect" coords="12,37,181,88" href="http://www.qq.com" onFocus="this.blur()"/>
??? <area shape="rect" coords="12,97,182,143" href="http://www.yahoo.com" />
??? <area shape="rect" coords="18,155,179,200" href="http://www.sina.com" />
??? <area shape="rect" coords="18,211,182,260" href="http://www.baidu.com" />
??? <!--<area shape="rect" coords="12,444,182,490" href="sm-textfile.html" target="pcs"/> -->
??? <!-- onFocus="this.blur()"?? 去掉虚线框 -->
</map>
详细解决方案
html 地图 area 标签
热度:743 发布时间:2012-06-30 17:20:12.0
相关解决方案
- 访问Tomcat的url的时候如何自动调用index.html
- The requested resource (/webtest/servlet/hello.html) is not availabl 帮忙解决解决方法
- JSP 页面乱码 页面起首已设置 contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
- html js不运行有关问题
- 办公自动化系统——议程管理(用jsp+servlet+js+html+jdbc)怎样实现
- <html:text>property的有关问题
- 关于<html:text>相关的有关问题
- Struts 1.2 html:form的action和form的action区别,还有如果2个都有执行哪个解决方案
- 简单计算器(html+js),该怎么解决
- HTML 小疑点,哪位高手解决 给哪位高手分
- 嵌入JSP中的CSS显示效果和在 HTML 中的不一样.为什么.该怎么解决
- struts1 中<html:checkbox>标签的value值怎么动态赋值
- 新人求问,J2EE方向,html,css,javascript,vml要学到什么程度?解决思路
- :前台和后台开发有啥区别?还有css、html、ajax、js、jquery都有什么区别
- struts <html:file> 怎么让前面的框消失,先谢过了
- =Html.TextAreaFor的文本区域大小如何设置
- 正则表达式 提取 html 标签的内容,该如何解决
- @Html.CkEditor,该怎么处理
- string msg = (string)html.ViewData["Message"];该如何处理
- html password editbox 编码有关问题
- @Html.TextBoxFor(a => a.Title 上边有红线,说异常
- 关于伪静态,怎么配置.html
- MVC中,Html.DropDownListFor怎么绑定数据
- 为何FCKeditor会在自动生成<html>标签呢
- MVC 中得 Html.ActionLink 怎么linkText显示图片标记
- <DOCTYPE html. 这个是有什么用?该如何处理
- asp.net C# 将网页变换为.html 格式
- @Html.ActionLink 基础解决办法
- 怎么引用一个 Html 控件对象
- HTML DOM setTimeout() 跟 setInterval() 的区别 ?———急——