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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nouvelle page 1</title>
<style type="text/css">
html, body {height:100%
width:100%;}
#foo { height:300px;
width:300px;
line-height:0;
font-size:0;
background-color:red;}
#bar { position:relative;
height:100px;
width:100px;
margin: 0 auto 0 auto;
background-color:green;
top:100px;
}
</style>
<script type="text/javascript">
var gone
function leave(){
gone=setTimeout(function(){alert('sorti');},10)
}
</script>
</head>
<body>
<div id ="foo" onmouseout="leave()" onmouseover="clearTimeout(gone)">
<div id="bar" onmouseover="clearTimeout(gone)"></div>
</div>
</body>
</html> |