Bonjour,
J'ai dans ma page une map en HTML pour avoir une image cliquable, il y a dix liens qui renvoient vers d'autres pages interne du site. Je voudrais appliquer un effet en CSS3 aux liens la map pour qu'au survol de la souris il y ait un effet de grossissement, j'ai inséré les éléments suivants dans ma page mais je n'ai pas l'effet voulu:
Le CSS associé (cela provient de https://github.com/IanLunn/Hover) :
Auriez-vous une idée d’où vient le souci ?
Merci d'avance
J'ai dans ma page une map en HTML pour avoir une image cliquable, il y a dix liens qui renvoient vers d'autres pages interne du site. Je voudrais appliquer un effet en CSS3 aux liens la map pour qu'au survol de la souris il y ait un effet de grossissement, j'ai inséré les éléments suivants dans ma page mais je n'ai pas l'effet voulu:
<img src="/images/bandeau.png'; ?>" width="1000" height="152" border="0" usemap="#map" />
<map name="map">
<area class="communes_map_area" shape="rect" coords="230,122,297,144" href="commune1.html" />
<area class="communes_map_area" shape="rect" coords="311,127,445,147" href="commune2.html" />
<area class="communes_map_area" shape="rect" coords="459,132,516,146" href="commune3.html" />
<area class="communes_map_area" shape="rect" coords="527,131,582,147" href="commune4.html" />
<area class="communes_map_area" shape="rect" coords="596,133,626,146" href="commune5.html" />
<area class="communes_map_area" shape="rect" coords="637,131,690,145" href="commune6.html" />
<area class="communes_map_area" shape="rect" coords="704,128,754,143" href="commune7.html" />
<area class="communes_map_area" shape="rect" coords="771,122,827,136" href="commune8.html" />
<area class="communes_map_area" shape="rect" coords="839,113,919,130" href="commune9.html" />
<area class="communes_map_area" shape="rect" coords="931,99,997,119" href="commune10.html" />
</map>
Le CSS associé (cela provient de https://github.com/IanLunn/Hover) :
map .communes_map_area {
display: inline-block;
vertical-align: middle;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
map .communes_map_area:hover, map .communes_map_area:focus, map .communes_map_area:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
Auriez-vous une idée d’où vient le souci ?
Merci d'avance