2

我已经包含了我需要的 jQuery UI 内容和 jQuery 核心,但以下内容仍然不起作用:

<div id="a" style="width: 500px; height: 500px; background-color: #F00; border: 1px solid #00F;">Click me</div>
<div id="b" style="width: 50px; height: 50px; background-color: #0F0; border: 1px solid #00F;"></div>

$(document).ready(function () {
    $('#a').click(function () { 
        $(this).effect(
            'transfer', 
            { to: $('#b') }, 
            1000
        ); 
    });
});​

你可以在这里找到一个 JSFiddle 示例

4

1 回答 1

5

为了效果,你需要 jQuery UI

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css " />
<script src="http://code.jquery.com/jquery-1.8.3.js "></script> 
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js "></script>

你也需要像这样的传输css

.ui-effects-transfer { 边框:2px 虚线灰色;}

示范

于 2012-12-13T10:05:42.893 回答