Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created an array of before/after image galleries each that utilize the jQuery .cycle() plugin to create a before/after transition effect. I have set the width property of all .cycle() container divs to resize to 100% of the browser width by using the following css property.

width:100% !important;

I also had to hack the .cycle() container to readjust the container height based on the height of the contained child images like so:

    $(window).resize(function(){
        $('.bgCycle').each(function(){
            newHeight = $(this).children('img').height();
            $(this).height(newHeight);
        });
    });

so far so good.

I am attempting to modify this function to stop resizing once the .cycle() container fits the height of the window (window height - height of the top nav bar). I am trying to find a way to ignore/disable the 100% width and define a new width in proportion to the fixed container height. I imagine that it would like something along the lines of this:

var cycleHeight = ($(window).height() - 100);
var windowWidth = $(window).width();

$(window).load(function(){
    if(windowWidth < 1400){
        $('.bgCycle').each(function(){
            newHeight = $(this).children('img').height();
            $(this).height(newHeight);
        });
    }
    else{
        cycleHeight = ($(window).height() - 100); //100px to account for top nav
        windowWidth = $(window).width();
        $('.bgCycle').width(windowWidth-300); //300px to account for side nav
        $('.bgCycle').height(cycleHeight);
    }
});


$(window).resize(function(){
    if(windowWidth < 1400){
        $('.bgCycle').each(function(){
            newHeight = $(this).children('img').height();
            $(this).height(newHeight);
        });
    }
    else{
        cycleHeight = ($(window).height() - 100); //100px to account for top nav
        windowWidth = $(window).width();
        $('.bgCycle').width(windowWidth-300); //300px to account for side nav
        $('.bgCycle').height(cycleHeight);  
    }
});

Please help. Thank You.

share|improve this question
what is a cycle? – shanabus Feb 16 '12 at 15:27
I am referring to the jQuery .cycle() plugin. I have edited the question to more clearly define what I am talking about. Thank you for pointing that out. – negrelja Feb 16 '12 at 16:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.