gpt4 book ai didi

jquery - 为什么这个简单的 jQuery 传输效果不起作用?

转载 作者:行者123 更新时间:2023-12-01 02:59:05 25 4
gpt4 key购买 nike

我已经包含了我需要的 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 示例 here

最佳答案

为了达到效果,您需要 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 { border: 2px dotted gray; }

Demonstration

关于jquery - 为什么这个简单的 jQuery 传输效果不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13857245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com