中的 div。Jquery动画参数
$(document).ready(function() {
$(".div1").click(function() {
$(".div2").stop().animate(...);
});
});
div1 和 div2 都是
我想点击div1,然后div2的位置将转到: top:0px;
left:200px;
这是相对于
动画部分怎么写?
$(document).ready(function() {
$(".div1").click(function() {
$(".div2").stop().animate(...);
});
});
div1 and div2 are both divs in <div id="content">
.
I want to click div1, then div2's position will go to: top:0px;
left:200px;
which is relative to <div id="content" style="width:800px;margin:0 auto;">
How to write the animate part?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
将对象传递给
和.animate()
topleft
属性,如下所示:确保元素在此处设置了
relative
或absolute
位置,无论您在哪里继续,否则top
和left
将不起作用。You can just pass an object to
.animate()
withtop
andleft
properties, like this:Make sure the element has a
relative
orabsolute
position set here, whichever you're going for, otherwisetop
andleft
will have no effect.