Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/02/2012, 16:39
4ng3r
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Coordenadas en imagen

Si usa el tag MAP

ejemplo


Código HTML:
Ver original
  1.  
  2. <p>Click on the sun or on one of the planets to watch it closer:</p>
  3.  
  4. <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />
  5.  
  6. <map name="planetmap">
  7.   <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm" />
  8.   <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm" />
  9.   <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm" />
  10. </map>
  11.  
  12. </body>
  13. </html>

http://www.w3schools.com/tags/tryit....ryhtml_areamap