HTML image maps have been around for some time but not many people are familiar with them. In fact, until a client recently wanted to use an image as the basis of a dynamic help system, even I didn't have much use for them. But when you do need to work with them, it's actually a lot of fun!
So what's the twist? This article shows how one can use image maps without the anchor tag which is normally used, uses a little jQuery, and is written in the context of Apex - all at the same time. You can check out the demo here. Here are the basic steps to get you going...
- Install jQuery.
- Get the image. There are a bunch of programs out there, both free and paid, that will help you take screen shots if you don't already have the image you want to work with. For a free tool that comes with Vista, check out the snipping tool.
- Create a map for the areas in the image. In an HTML image map, the sections one will be working with are called areas and each area element has a shape attribute. There are three basic shapes: rect (rectangle), circle, and polygon. Choose the appropriate shape for each each area of the image you want to work with - polygons can be used for oddly shaped areas. Then using a tool for working with images, like MS Paint or GIMP, get the coordinates of each. Each shape has its own system for mapping coordinates. We'll turn these coordinates into code in step 5.
- Make the image available to your application. Either add the image to the shared components of your application or to the file system of your web server like the "i" directory.
- Add the image and image map to your Apex application by adding an HTML region with the following code (modify for your needs):
- Add the following JavaScript to the HTML Header of the page:
As you can see, my implementation is very basic - all the HTML is in the one region. However, there is no limit to how you can adapt the code for your own needs. Using a static region ID, you can work with multiple regions. Even Ajax is possible.
Happing coding!
- 2009/05/12 - Updated to better handle the hovering effect in IE.
Dan,
ReplyDeleteYou can check an old demo I made. ;)
http://apex.oracle.com/pls/otn/f?p=987654321:2:0:::RP,2
L-G,
ReplyDeleteI remember that one... As well as Roel's here:
http://roelhartman.blogspot.com/2009/04/apex-star-rating-amazon-style.html
Regards,
Dan
Nice Demo Dan.
ReplyDeleteThis is something we were looking at doing.
Thanks for the info.
Francis.
Francis,
ReplyDeleteThanks. Note that I just updated the code to better handle the hovering effect in IE. It's actually simpler ;)
Regards,
Dan