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.