1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<script type="text/javascript">
var x = 0;
var y = 0;
if (document.getElementById)
{
if(navigator.appName.substring(0,3) == "Net")
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = Pos_Souris;
window.onload = bouge;
}
function Pos_Souris(e)
{
x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x + document.body.scrollLeft;
y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y + document.body.scrollTop;
}
posX = 0;
posY = 0;
function bouge(){
if (document.getElementById) {
posX = posX+(((x-posX)+20)/15);
posY = posY+(((y-posY)+20)/15);
document.getElementById("coord1").innerHTML = posX;
document.getElementById("bouge").style.left = posX;
document.getElementById("bouge").style.top = posY;
tempo = setTimeout("bouge()", 15);
}
}
</script>
</head>
<body>
<div id="coord1">.</div>
<div id="bouge" style="position:absolute">test</div>
</body>
</html> |