JQuery SlideDown() 未正确推送其他内容
下面的代码会向下滑动一些内容。它应该将页面的其余部分向下推,并且确实如此,但它没有为其设置动画。它在动画结束时静态跳跃。
$(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您是在页面加载后立即制作动画的,因此您可能会在大多数浏览器中看到这种行为。尝试在页面加载后给予一些延迟,然后滑动它。试试这个
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