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
| <html>
<head>
<title>Document sans titre</title>
<style>
#alt {
position:absolute;
background:#FF0000;
display:none;
color:#FFFFFF;
height:50px;
width:80px;
}
</style>
<script language="JavaScript" type="text/javascript">
function affiche() {
obj = document.getElementById("alt");
obj.innerHTML = "Hello";
obj.style.display = "block";
}
function efface() {
obj = document.getElementById("alt");
obj.style.display = "none";
}
function bouge() {
obj = document.getElementById("alt");
x = event.x ;
y = event.y + document.body.scrollTop ;
obj.style.top = y+"px";
obj.style.left = x+"px";
}
</script>
</head>
<body>
<div id="alt">Salut</div>
<img src="image.jpg" onMouseOver="affiche()" onMouseOut="efface()" onMouseMove="bouge()"/>
</body>
</html> |