Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm pulling multiple, arbitrarily-sized images from an API and stuffing them into a bxSlider. When the slider first loads, the first image and part of the last are both visible. Paging through them all once causes them to work as expected. Here's my code:

<div class='expanded-box-left'>
<ul id='slider' width='90%'>
<li>
    <img class='centered' src='" + out.image + "' onload='resizeImage(this)' style='{margin-right: auto; margin-left: auto;}'/>
</li>
<li>
    <img class='centered' src='images/image.jpg' onload='resizeImage(this)' style='{margin-right: auto; margin-left: auto;}'/>
</li>
</ul>
</div>

and some JS:

function resizeImage(img) {
if(img.height >= img.width) {
    img.style.height = "90%";
    img.style.width = "auto";
} else {
    img.style.width = "100%";
    img.style.height = "auto";
}
}

It starts out looking like thisenter image description here but after scrolling through the images they end up centered horizontally, as expected. How can I fix this?

share|improve this question
1  
Fiddle will help you to get a better answer. – Gurpreet Singh Nov 24 '12 at 21:32

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.