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 this
but after scrolling through the images they end up centered horizontally, as expected. How can I fix this?