| (f) Client-side image maps shall be provided instead of server-side image maps except where the regions cannot be defined with an available geometric shape. |
Image maps use coordinates to place a link on a specific area of an image.
Why do client-side image maps provide better accessibility?
A "client-side" image map contains a number of pieces of information : mapping of active areas
( or hot spots ) of the image, URL information, and the ALT text in the HTML document.
Because the client-side image map resides in the HTML document, ALT attributes are accessible to
screen readers.
This feature means that someone using a screen reader can easily
identify and activate regions of the map.
Creating a basic client-side image map requires several steps:
Accessible HTML <img src="Images/communites.gif" width=413 height=132"
usemap="#community-options" border=0 ALT="Professional
Communities">
<map name="community-options">
<area shape="rect" coords=" 0, 45, 127, 129" href="aviation.htm"
ALT="Aviation Community">
<area shape="rect" coords=" 130, 45, 270, 129" href="submarines.htm"
ALT="Submarine Community">
<area shape="rect" coords=" 275, 45, 410, 129" href="surface.htm"
ALT="Surface Community">
</map>
Working Example
|
Previous Slide |
First Slide |
Next Slide |