|
|||
| week 07b - design process, image maps, tables | |||
image maps : |
links inside of images Image maps allow you specify multiple links inside of a single image. The links are tied to shapes overlaid on the image, which can be rectangles, circles, or polygons. This is especially useful when mocking up a website. Rather than taking time to create many separate images (by slicing or other means), you can quickly create your complete web pages in Illustrator or Photoshop and export them as complete pages. Then use image maps for any links on the page. In Dreamweaver, create an image map by clicking on the image, then naming the imagemap in the lower left corner of the property inspector. Once the map is named, you can create multiple links by drawing a shape, and then associating the URL with the link, using the tools in the property inspector.
The following image has four links, one over each text area.
Making an image map:
|
|
| explorer blue lines : | Note: You may find that when the user clicks on an image map in Microsoft Explorer, an outline appears showing the shape of the image map. To remove this outline, edit the HTML and add a small amount of JavaScript.
<img src="table_files/lit_side.jpeg" width="140" height="320" border="0"
usemap="#mymap" align="left" hspace="10">
<map name="mymap">
<area shape="rect" coords="2,115,138,152"
href="http://www.brickmag.com/" onFocus="this.blur();">
<area shape="rect" coords="0,166,143,204"
href="http://www.thinkoutside.com/" onFocus="this.blur();">
<area shape="rect" coords="1,219,138,253"
href="http://www.jacketmagazine.com" onFocus="this.blur();">
<area shape="rect" coords="1,273,144,307"
href="http://www.artcenter.edu/" target="_blank" onFocus="this.blur();">
</map>
|
| all materials on this web site © copyright 2003, Philip van Allen |
top |