如何在图片中的图片或者文字加超链接
是这样,有时候收到很多推销的邮件,里面有图片和文字,看起来像一个网页的彩页。我不知道整体是一张图或者不是。但是你点击里面的图或者文字,它是带超链接的,可以链到其他网站去。...
是这样,有时候收到很多推销的邮件,里面有图片和文字,看起来像一个网页的彩页。我不知道整体是一张图或者不是。但是你点击里面的图或者文字,它是带超链接的,可以链到其他网站去。上面有邮箱地址,点击进去就直接可以给那个邮箱发邮件。请问这怎么做?
展开
推荐于2016-06-28 · 知道合伙人互联网行家
关注
展开全部
图片上的文字还是图片,加不了超链接。
除非你用flash这样的格式。
如果是网页,可以给图片分区,然后给区域加链接,用Dreamwaver做很简单。
代码类似这样:
<html>
<body>
<p>请点击图像上的星球,把它们放大。</p>
<img src="/i/eg_planets.gif"
width="145" height="126"
usemap="#planetmap">
<map id="planetmap" name="planetmap">
<area shape="rect"
coords="0,0,82,126"
alt="Sun"
href="/example/html/sun.html">
<area shape="circle"
coords="90,58,3"
alt="Mercury"
href="/example/html/mercur.html">
<area shape="circle"
coords="124,58,8"
alt="Venus"
href="/example/html/venus.html">
</map>
<p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>
</body>
</html>
除非你用flash这样的格式。
如果是网页,可以给图片分区,然后给区域加链接,用Dreamwaver做很简单。
代码类似这样:
<html>
<body>
<p>请点击图像上的星球,把它们放大。</p>
<img src="/i/eg_planets.gif"
width="145" height="126"
usemap="#planetmap">
<map id="planetmap" name="planetmap">
<area shape="rect"
coords="0,0,82,126"
alt="Sun"
href="/example/html/sun.html">
<area shape="circle"
coords="90,58,3"
alt="Mercury"
href="/example/html/mercur.html">
<area shape="circle"
coords="124,58,8"
alt="Venus"
href="/example/html/venus.html">
</map>
<p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |