jQuery 在淡入之前淡出
我正在制作我的作品集,完全基于 javascript。 http://portfolio.theadamgaskins.com/Portfolio/
我的问题是,当您单击其中之一时导航按钮时,新页面会在其他页面淡出的同时淡入。当前页面应该在新页面淡入之前淡出。这是我正在使用的代码
$("#homeButton").click(function()
{
$('.page[id!="homePage"]').fadeOut('400', function()
{
$("#homePage").fadeIn('400');
});
});
:请随时在网站上查看源代码
。
I am making my portfolio, totally javascript based. http://portfolio.theadamgaskins.com/Portfolio/
My problem, is when you click one of the navigation buttons, the new page fades in at the same time that the other page fades out. The current page should fade out before the new page fades in. Here's the code I'm using:
$("#homeButton").click(function()
{
$('.page[id!="homePage"]').fadeOut('400', function()
{
$("#homePage").fadeIn('400');
});
});
This is out of context; feel free to View Source
on the site.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况是因为某些元素已经隐藏,因此它们的回调立即执行...导致同步动画。要解决此问题,请将
:visible
添加到所需元素的选择器中制作动画,如下所示:这样您就不会将动画或有问题的回调附加到已经隐藏的元素。
This happens because some of the elements are already hidden, so their callbacks execute immediately...causing your simultaneous animation. To remedy this add
:visible
to your selector of elements you want to animate, like this:This way you're not attaching an animation or problematic callback to the elements that are already hidden.