Currently I’ve an image mapped out like this
<img src="Floor1.jpg" alt="Floor1" usemap="#Floor1">
<map id="Floor1" name="Floor1">
<area shape="rect" name="Seat1" title="Seat1" coords="535,311,133,555" href="#" target="" />
<area shape="rect" name="Seat2" title="Seat2" coords="121,211,111,555" href="#" target="" />
</map>
And along with this a Jquery plugin called Image Mapster that allows me to hover over the area and display a tooltip.
What I want to do now is to be able to add an extra image onto this site, but instead of me having to hover over the map area in order to see the information, it’ll just display the information inside of the image map without me hovering over the area at all. I would do this in Photoshop but for the image, the information inside the tooltip can change dynamically which is why I can’t.
https://i.imgur.com/wAjNn0d.png
Thanks for all your help!
2
Answers
If I understand your question correctly, you should be able to do this with just css and html.
html:
css:
http://jsfiddle.net/2v5Lpxwh/2/
HTML:
CSS:
JQ: