1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Nouvelle page 2</title>
<script type="text/javascript">
function swapPic(zone,nr){
var pic=document.getElementById('hovered')
pic.src='plan/'+nr+'.jpg'
zone.onmouseout=function(){pic.src='plan/0.png'}
}
</script>
<style type="text/css">
img {border:0;}
</style>
</head>
<body>
<div id="pic" style="height: auto; width: auto; background-image: url('plan/0plan.jpg'); background-repeat: no-repeat">
<img id="hovered" src="plan/0.png" usemap="#Map" />
<map name="Map">
<area href="#" onmouseover="swapPic(this,rose_1)" shape="rect" coords="100, 270, 190, 304">
</div>
</body>
</html> |