身體的html代碼:爲什麼這jQuery的簡單傳輸效果不起作用?
<div style="background:yellow;width:500px;height:300px;">
<div id="div1" style="background:red; width:100px;height:100px; float:left;"></div>
<div id="div2" style="background:blue; width:50px;height:50px; float:right;"></div>
</div>
然後JS代碼:
$(function() {
$("#div1").click(function() {
$(this).effect("transfer", { to: $("#div2") }, 1000);
//$(this).effect("shake", { times: 2 }, 200);
});
});
當然
我有進口
<script type="text/javascript" src="js/jquery-ui-1.8.5.custom.min.js"></script>
你可以看到不好在線:http://jsfiddle.net/hh54188/wz2J3/
下面的「搖動」效果可能會奏效,但反式FER簡化版,工作 那麼,如何解決這個問題?謝謝