请教慕课上鼠标移上图片缓慢变大怎么实现,我想学习下
3 回答
MnZLZ
TA贡献3条经验 获得超0个赞
$("#imageId").mouseover(function(){ $(this).stop().animate({width:"800px",height:"600px;"},8000); }).mouseout(function(){ $(this).stop().animate({width:"300px",height:"200px;"},8000); });
添加回答
举报
0/150
提交
取消