请高手指导这代码有什么问题?

<style>

*{margin:0;padding:0;}

#Div{width:300px;height:180px;margin:200px auto;border:2px solid #999999; overflow:hidden;}

</style>


<body>


<div id="Div">

  <img src="images/1.jpg" alt="" />

</div>

<script>

$(document).ready(function(){

  $("#Div img").hover(

    function(){

 $(this).animate({width:'330px',height:'210px'},500)

};

    function(){

 $(this).animate({width:'300px',height:'180px'},500)

};

  );

});

</script>

</body>


牵袏手_卟离
浏览 1485回答 1
1回答

牵袏手_卟离

我想实现慕课首页鼠标移上图片会放大和缩小的效果 但是上面代码怎么实现不了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery