Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/08/2013, 12:28
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 13 años, 2 meses
Puntos: 8
capa que flota en pagina web, necesito mejorarlo

ojala me pudieran ayudar
1-solo quiero moverlo cualdo este sobre el maus

Código PHP:
Ver original
  1. <html>
  2. <head>
  3. <script lenguage="javascript">
  4. function Mover()
  5. {
  6. var posicion = window.event;
  7. var pos = posicion.clientX;
  8. var pos2 = posicion.clientY;
  9. capa = document.getElementById("Capa");
  10. capa.style.marginLeft = pos;
  11. capa.style.marginTop = pos2;
  12. }
  13. </script>
  14. </head>
  15. <body onMouseMove="Mover()">
  16. <div id="Capa" style="position:absolute; width:200px; height:200px; left:0px; background-color:black;">
  17. </di>
  18. </body>
  19. </html>