I have to create this strange honeycomb style navigation and ideally when a use hovers each 'honeycomb', it'll change color. Maybe a transparent orange overlay or something.
I made a somewhat working JS Fiddle, but don't know how I can highlight the shapes on hover. I haven't seen image maps used in a long time, but that's the only solution I know of. Are there other, more modern solutions?
http://jsfiddle.net/dmathisen/v9wZV/
Note: this only works on a wide screen. I have no idea how I'll handle this in smaller displays, but I guess that's for future me to worry about.
Is there a better way to accomplish this other than using an image map?
<map id="honeycomb" name="honeycomb">
<area shape="poly" alt="" title="" coords="493,23,572,65,573,159,491,204,415,158,415,67" href="" target="" />
<area shape="poly" alt="" title="" coords="651,22,732,66,732,158,652,203,574,158,573,66" href="" target="" />
...
</map>