JQuery SlideDown() 未正确推送其他内容

发布于 2024-12-19 12:10:04 字数 271 浏览 1 评论 0原文

下面的代码会向下滑动一些内容。它应该将页面的其余部分向下推,并且确实如此,但它没有为其设置动画。它在动画结束时静态跳跃。

$(window).load(function(){
                        $('.panel.autoc').effect('shake', {times:5}, 80);
                        $('.errors').slideDown(800);
                    });

The following code slides down some content. It should push the rest of the page down to, and it does but it does not animate it. It statically jumps at the end of the animation.

$(window).load(function(){
                        $('.panel.autoc').effect('shake', {times:5}, 80);
                        $('.errors').slideDown(800);
                    });

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

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

发布评论

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

评论(1

dawn曙光 2024-12-26 12:10:04

由于您是在页面加载后立即制作动画的,因此您可能会在大多数浏览器中看到这种行为。尝试在页面加载后给予一些延迟,然后滑动它。试试这个

$(window).load(function(){
                    setTimeout(function(){
                        $('.panel.autoc').effect('shake', {times:5}, 80);
                        $('.errors').slideDown(800);
                    }, 200);
});

Since you are animating right after the page load you might see such behavior in most of the browsers. Try to give some delay after page loads and then slide it. Try this

$(window).load(function(){
                    setTimeout(function(){
                        $('.panel.autoc').effect('shake', {times:5}, 80);
                        $('.errors').slideDown(800);
                    }, 200);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文