Bonjour.
j'espère qu'il n'est pas trop tard pour avoir de l'aide.
mon image reste en haut à gauche, même après plusieurs essais.
voilà le script. Merci de m'aider, à bientôt.
<html>
<head>

<style type="text/css" media="screen">
body{background:#f2f2f2; margin:0; padding:0;}
.page{position:absolute; botton:0; right:0; width:50px; height:50px;}
.page img{ width:100%; height:100%;}
</style>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js></script>
<script type="text/javascript">
$(function(){
$('.page').hover{
function(){
$(this).stop().animate({ width:150, height:150},500);
}
,
function(){
$(this).stop().animate({ width:50,height: 50},500);
}
};

});
</script>

</head>

<body>
<div classe="page">
<img src="page.jpg"/>
</div>
</body>
</html>

1 réponse


<div classe="page"> n'existe pas... Il ne faut pas de 'e' à class="page"...