$('.boxgrid').hover(function(){
$(".car").animate({left:'0px'},{duration:600});
}, function() {
$(".car").animate({left:'720px'},{duration:300});
});
抢车位知识点
光标移入,执行函数1
光标移出,执行函数2
<!DOCTYPE html> <html> <head> <title>停车动画</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link href="style.css" rel="stylesheet" type="text/css"> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript" src="script.js"></script> </head> <body> <img class="car" src="http://img.mukewang.com/5343d553000107a107200701.jpg" width="350" height="341"/> </body> </html>