ojala me pudieran ayudar
1-solo quiero moverlo cualdo este sobre el maus
Código PHP:
Ver original<html>
<head>
<script lenguage="javascript">
function Mover()
{
var posicion = window.event;
var pos = posicion
.clientX
; var pos2 = posicion.clientY;
capa = document.getElementById("Capa");
capa
.style
.marginLeft
= pos;capa.style.marginTop = pos2;
}
</script>
</head>
<body onMouseMove="Mover()">
<div id="Capa" style="position:absolute; width:200px; height:200px; left:0px; background-color:black;">
</di>
</body>
</html>