怎么沒有效果
$(document).ready(function(){
? $('.car').hover(function) ?
? ? ? ?$(".car").animate({top:500},{duration:600});
? ? ? ?},
? ? ? ?function() {
?$(".car").animate({top:0},{duration:600});
?});
? ? ??
*{ padding:0px; margin:0px; }
body{?
? ? background:#D5DEE7;?
position:relative;
}
.car{ position:absolute;
top:0;
? ? left:10px;
? ??
}
? ? ??
2017-07-27
animate({top:500}) 500沒帶單位“px”
2016-10-30
必須得有那個jquery.js文件,才有鼠標移動的那個效果的。
2016-08-03
css改上下不是改左右
.car{?
? ? position:absolute;
? ? top:500px;
? ? left:0;
? ??
? ??
}
? ??