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
| <!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="content-type" content="text/html"; charset="utf-8"/>
<title>Ici mon titre</title>
</head>
<style>
a:hover {background-color:yellow;} /*-----le lien change de couleur au survol*/
#MEDiv{ /* initialisation de la première image vue au démarrage du programme */
margin-top: 15px;
height:50px;
width:48px;
border-style: solid;
border-radius: 5px 20px 5px 20px;
background-repeat:no-repeat;
background-image: url("https://www.developpez.net/forums/images/smilies/whistle.gif");
box-shadow: 5px 5px 5px;
}
</style>
<script>
function ChangeImage(url){
document.getElementById("MEDiv").style.backgroundImage="url('"+url+"')";
}
</script>
<body>
<p><a href="#" onmouseenter="ChangeImage('https://www.developpez.net/forums/images/smilies/wavey.gif')" onmouseout="ChangeImage('https://www.developpez.net/forums/images/smilies/whistle.gif')">Retour Menu</a><br /><div id="MEDiv"></div></p>
</body>
</html> |