I have created an image map with a dot. Now I want to change the color or the image of the dot at CSS Hover. Is it possible to solve this with CSS, or is Javascript required? What other options do I have with HTML Area?
<img src="map.jpg" usemap="#image-map" style="z-index:1;">
<map name="image-map" id="Image-Maps">
<area class="one" coords="286,287,7" shape="circle">
</map>
<style>
.one {
width: 100px;
height: 100px;
background: url('point-blue.png');
z-index:2;
}
.one:hover {
background: url('point-red.png');
z-index:2;
}
</style>