I am currently having a huge headache trying to get a site I'm building to work across variable resolutions. The main navigation is through an image map that needs to fill most of the viewport. I know this is totally outmoded but an image map seems the only non-Flash solution to allow polygonal area delimiting - i'd love an alternative though!

I have eventually managed to get the site to resize to allow the main image to display on smaller monitors using conditional jQuery & CSS, but that resizes the text within the slickboxes too, which looks awful!

The site (very much unfinished) is here. I know the navigation isn't entirely clear yet (hover over and click paint colours), but I want to sort this issue first.

My questions, in summary:

  1. Is there an alternative way to create this polygonal hotspot rollover image without using an Image Map?
  2. Is there otherwise a way of resizing the image map and overlaid slickboxes, while keeping text the same size?

Thanks so much - been pulling hair out over this all weekend!

link|improve this question

20% accept rate
I faced this problem myself before, but I never found a solution. I'm interested to see what answers come up. – casablanca Nov 9 '10 at 19:22
@casablanca I edited my answer with the only approach I can think of now that relative values don't work – Pekka Nov 9 '10 at 19:31
feedback

2 Answers

Edit: The percent approach doesn't work.

In that case, the only thing I can see goes like this:

Have shapes using percent notation:

 <area shape="rect" coords="0,0,0,0" mycoords="1%,3%,25%,29%">

On the first draw and on every window resize:

  • parse each area's mycoords property

  • Split percentages into four integers

  • Calculate percentages based on the image's .width() property

  • Set the area's coords property based on the thusly calculated pixel values

Not entirely trivial, but this should be halfway easy to implement by a seasoned jQueryist.

Old answer:

Hmm. So you have an imagemap that needs to resize dynamically?

I have never tried this myself, but what about using relative coordinates=

 <area shape="rect" coords="1%,3%,25%,29%">

No idea whether this works, but worth a try.

link|improve this answer
I'll try this ;) – Harmen Nov 9 '10 at 19:21
2  
Unfortunately this doesn't work. I just tested this in Firefox and it completely ignores the %, interpreting the numbers as pixel coordinates. – casablanca Nov 9 '10 at 19:25
1  
@casablanca, same result on Chrome – Harmen Nov 9 '10 at 19:27
@casablanca @Harmen crap. In that case, the only thing I can think of is resizing it dynamically using jQuery/Javascript. Thanks for testing it out. – Pekka Nov 9 '10 at 19:27
@Pekka: Indeed that works, though I would've liked a cleaner way of doing it. Image maps can come in really handy at times and it's a pity that they've been forgotten for ages now. – casablanca Nov 9 '10 at 19:34
show 6 more comments
feedback

It's a little bit limited, but you CAN do irregular shapes with HTML/CSS.

A List Apart

CSS Play

You should be able to adapt one of those to your purposes.

EDIT:

Regarding image resizing, you need to use relative widths in your CSS instead of hardcoding them in pixels

In fact, there is a flexible framework that may already take care of much of that for you: Check out CSS Grid.

link|improve this answer
This is interesting (good links!) but doesn't help with the resizing problem, does it? – Pekka Nov 9 '10 at 19:46
but relative widths don't work in the image map, that was the problem we are discussing above – Pekka Nov 9 '10 at 20:18
That's correct. My proposal to you is to drop the image map, and incorporate the links I gave in to the project which will fake it for you. – Chris Sobolewski Nov 9 '10 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.