i have a problem with jQuery fadeIn(or fadeOut) method. i build an article rotator , all works fine but there is a problem when the page is scrolled bottom and the article rotate, The fadeIn (or fadeOut) method causes a scroll to the article position. I think that these methods ,changes the css top property of body, but I do not know how to avoid this! Any idea???

here the code

    function rotate(direction)
{
    if($('articles > article:visible:first') == 'undefined')
        $currentArticle = $('articles > article:first');
    else
        $currentArticle = $('articles > article:visible:first');

    if($currentArticle.attr('id') == $('articles > article:last').attr('id'))
        $next = $('articles > article:first');
    else
        $next = $currentArticle.next();

    if($currentArticle.attr('id') == $('articles > article:first').attr('id'))
        $prev = $('articles > article:last');
    else
        $prev = $currentArticle.prev();

    if($do_animation)
    {
        $currentArticle.fadeOut(1000,function(){
                switch(direction)
                {
                    case 1:
                        $next.fadeIn(1000);
                        break;
                    case -1:
                        $prev.fadeIn(1000);
                        break;
                }
                if($('.rotate_show'))
                    $('.rotate_show').removeClass('rotate_show');
                $('article_number > btn[id|="'+$next.attr('id')+'"]').addClass('rotate_show');
                });
    }
    else
        return false;
}

ok here the site http://kario91.altervista.org/ultimate the text is from joomla this is the complete site! the variables work fine, there's no problem.. try to reduce the browser window and scroll bottom

link|improve this question
1  
I know the answer, but I can't tell you until you post some code. – mVChr Feb 6 '11 at 23:46
2  
If you know the answer, then what does the person posting code have to do with it? – iWasRobbed Feb 7 '11 at 2:58
now i post the function code that make rotation – marchetto91 Feb 7 '11 at 11:01
I can't see how this would affect the scrolling, but I can tell you that you have to be careful how and where you're defining your variables. If $currentArticle has not been defined outside of the function (which it shouldn't have been), then define it once using var at the top of your function definition. This should explain e.g. where $do_animation has been defined? — But to address your problem: could you provide us with an example of your whole page somewhere? – polarblau Feb 7 '11 at 13:43
ok here the site kario91.altervista.org/ultimate the text is from joomla this is the complete site! the variables work fine, there's no problem.. try to reduce the browser window and scroll bottom – marchetto91 Feb 7 '11 at 14:03
show 2 more comments
feedback

2 Answers

up vote 2 down vote accepted

I feel tempted to say that this issue is due to the fact that when your article fades out completely, just before the callback is called, the height of your page is reduced (because the article is hidden) and because of that, the browser scrolls up until the bottom of the page (without the article) is right at the bottom of the browser's window. Try removing the callback after the fadeOut is completed, and you might notice how the browser aligns the bottom.

I think you could fix this by giving the article container a height before the fadeOut beings, and when the fadeOut is completed, remove this height right after the fadeIn begins... Or something like that.

I hope this helps!

link|improve this answer
ok this is a good idea! thank you – marchetto91 Feb 7 '11 at 14:56
i tried your idea! works fine! thank you! – marchetto91 Feb 7 '11 at 15:09
I'm glad this helped! – Federico Cáceres Feb 7 '11 at 15:56
I had a similar problem, and solved it by setting a "height" in the CSS for the div that was wrapping my element that was fading in and out. Thanks for pointing me in the right direction. – Spike Williams Mar 25 '11 at 16:32
feedback

Setting height to parent container solved the problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.