Bonjour à tous,

j'ai un souci pour le développement de mon site. J'ai créé un effet parallax mais j'aimerais aussi pouvoir interagir sur les images du background via une balise area.

comme je n'y arrive pas, je me demande d'abord si c'est quelque chose qui se fait ?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
      <link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript">	
    $(document).ready(function(){		
        $('#slide1').parallax("center", 0, 0.1, true);
        $('#slide2').parallax("center", 900, 0.1, true);
        $('#slide3').parallax("center", 2900, 0.1, true);
    })
</script>
  </head>

<body>

<div id="slide1"usemap="#ousse">  

	   <map name="ousse">
   	<area shape="circle" coords="314,105,50"  onmouseover="afficher('circle1)" onmouseout="masquer('circle1')"/></map>
	<div id="circle1"><a href="abri.jpg"data-lightbox="image-1" title="C'est pour sûr un bâtiment"><img src="circle.png" onmouseover="afficher('circle1')" onmouseout="masquer('circle1')"/></a></div>	

  
</div>


Merci beaucoup