如何在 Dreamweaver 中添加使用 Photoshop 制作的布局的链接

发布于 2024-08-28 01:51:15 字数 65 浏览 10 评论 0原文

我只是好奇他们如何使用 Dreamweaver 在 Photoshop 中的网站布局上放置链接。 他们是怎么做到的?

I'm just curious how do they put links on the website layouts in photoshop using dreamweaver.
How do they do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囍孤女 2024-09-04 01:51:15

如果你想在图像的某些部分/区域上设置链接,你应该使用 imagemap 这是一个简单的例子:

  <img src="image.png" width="345" height="312" border="0" alt="this is my image" usemap="#mymap">
  <map name="mymap">
    <area shape="rect" coords="11,10,59,29" href="http://www.koblenz.de/" alt="Koblenz" title="Koblenz">
    <area shape="rect" coords="42,36,96,57" href="http://www.wiesbaden.de/" alt="Wiesbaden" title="Wiesbaden">
  </map>

你可以为可点击区域定义不同的形状,如矩形、圆形和多边形 - 只需询问谷歌一下准确的语法。请注意图像的 usemap 属性来定义应使用的地图。

编辑:我想我误解了你的问题 - 但也许这无论如何都有帮助......

if you want to set links on some parts/areas of an image, you should use imagemap here is an simple example:

  <img src="image.png" width="345" height="312" border="0" alt="this is my image" usemap="#mymap">
  <map name="mymap">
    <area shape="rect" coords="11,10,59,29" href="http://www.koblenz.de/" alt="Koblenz" title="Koblenz">
    <area shape="rect" coords="42,36,96,57" href="http://www.wiesbaden.de/" alt="Wiesbaden" title="Wiesbaden">
  </map>

you can define different shapes for the clickable areas like rectangle, circles and polygons - just ask google for the exact syntax. note the usemap-attribute of the image to define wich map should be used.

EDIT: i think i misunderstood your question - but maybe this helps anyway...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文