When you have images in the slideshow that are different heights the page jumps when they load. How can I get it to smoothly get higher and lower instead?
An example of this is here: on the thumbnails: LINK
It doesn’t look like you’re using the plugin on that page.
On line 118 of the plugin, the height is calculated for the parent container and set using jQuery’s CSS method. You should be able to use Animate instead, which will give a smoother transition.
Hi there thank you for your response. I only used the link as an example of the movement I wanted to achieve.
$(this).parent().css("height", $oht + $pht + $ht + $qht - 30);'; SO it si this line of code, how would I go about applying .animate to it, I’m very new to javascript.