Bonjour,
j'ai utilisé le tutoriel existant sur le site pour créer une image map. Seulement mon souci est qu'au survol des zones, le curseur ainsi que l'image s'affichant en-dessous de l'image map clignotent, impossible de les garder fixes...
voici le code :
style :
merci d'avance
j'ai utilisé le tutoriel existant sur le site pour créer une image map. Seulement mon souci est qu'au survol des zones, le curseur ainsi que l'image s'affichant en-dessous de l'image map clignotent, impossible de les garder fixes...
voici le code :
<div id="image_map">
<div id="image">
<a id="zone1" href="#" title="Zoom 1"></a>
<a id="zone2" href="#" title="Zoom 2"></a>
<a id="zone3" href="#" title="Zoom 3"></a>
</div>
</div>
style :
div#image_map
{
width: 150px;
top: 280px;
left: 350px;
position: absolute;
text-align: left;
/*border-style: dashed;*/
padding-bottom: 30px;
font-size: 11px;
}
#image {
position: absolute;
width : 150px;
height: 137px;
background: url('../images/situation_OT.gif') top left no-repeat;
}
#zone1 {
position: absolute;
width : 20px;
height: 20px;
left: 30px;
top: 30px;
}
#zone2 {
position: absolute;
width : 20px;
height: 20px;
left: 110px;
top: 52px;
}
#zone3 {
position: absolute;
width : 20px;
height: 20px;
left: 45px;
top: 70px;
}
#zone1:hover {
width : 150px;
height: 100px;
left: 0px;
top: 200px;
background: url('../images/Office 1.jpg') top left no-repeat;
cursor:help;
border: 0px;
}
#zone2:hover {
width : 150px;
height: 140px;
left: 0px;
top: 200px;
background: url('../images/Office 2.jpg') top left no-repeat;
cursor:help;
border: 0px;
}
#zone3:hover {
width : 150px;
height: 140px;
left: 0px;
top: 200px;
background: url('../images/Office 3.jpg') top left no-repeat;
cursor:help;
border: 0px;
}
merci d'avance