$(document).ready(function(){
$(".car").click(function(){
$(this).animate({top:"500px"},{duration:600});
});
});
$(".car").click(function(){
$(this).animate({top:"500px"},{duration:600});
});
});
2016-07-26
最新回答 / qq_啊啦嘞_0
1)將鼠標(biāo)hover,改成click事件。<!DOCTYPE html><html lang="en"><head> ? ?<meta charset="UTF-8"> ? ?<title>搶車位動(dòng)畫效果制作</title> ? ?<script src="jquery-1.11.1.js"></script> ? ?<style> ? ? ? ?.car-box { ? ? ? ? ? ?posi...
2016-06-10
$(document).ready(function(){
$('.car').hover(function(){
$(".car").animate({top:'500px'},{duration:600});
},function() {
$(".car").animate({top:'0px'});
} );
});
$('.car').hover(function(){
$(".car").animate({top:'500px'},{duration:600});
},function() {
$(".car").animate({top:'0px'});
} );
});
2016-05-31