在一个 div 内垂直移动(向上滚动)另一个 div

发布于 2024-12-10 23:17:20 字数 68 浏览 0 评论 0原文

我的意思是,如何在不单击任何按钮的情况下向上移动内部 div 的内容,就像动画一样。有什么方法可以在动画完成时触发事件吗?

How to move the content of the inner div up, without click any buttons, I mean, like an animation. And is there any way to trigger an event when the animation is done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜警司 2024-12-17 23:17:20

您需要使用的是回调。具体来说,是 .animate 中内置的一个。

$('div').animate({top:-50},1000,function() {
    alert('Animation is finished!');
});

工作示例: http://jsfiddle.net/koolvin/YGBvb/

或者也许您的意思更多这行:
http://jsfiddle.net/koolvin/uFwap

$('div').animate({scrollTop:100},1000,function() {
    alert('Animation is finished!');
});

查看您的评论后,看起来这就是您的内容想:
http://jsfiddle.net/koolvin/uFwap/17/

What you need to use is a Callback. Specifically the one built in to .animate.

$('div').animate({top:-50},1000,function() {
    alert('Animation is finished!');
});

Working example: http://jsfiddle.net/koolvin/YGBvb/

Or perhaps you meant something more along the lines of this:
http://jsfiddle.net/koolvin/uFwap

$('div').animate({scrollTop:100},1000,function() {
    alert('Animation is finished!');
});

After reviewing your comment, it looks like this is what you want:
http://jsfiddle.net/koolvin/uFwap/17/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文