您好我想移動我的div當我點擊一個動畫效果的按鈕,所以我使用。動畫。但它不能正常工作 這是我使用需要移動頂部,當點擊一個按鈕使用動畫
$(document).ready(function(){
$("#btn1").click(function(){
$("#box").animate({margin-Top: "300px"});
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="btn1">Animate topdown</button>
<div id="box" style="background:#98bf21;height:100px;width:100px;margin:6px;"></div>
什麼是錯在我的代碼我不能用頂部,而不是邊距becuse我DIV位置代碼:相對;
感謝。我明白 –