Hi Karl, that's exatcly the issue i got for some reason i cannot get the other way around to run parallel not sure why ... the code look like this ...
identical each other but just behave a bit different is that bugs in jquery or my logic is something wrong ... $('#bigLeft').click( function () { if (actual_change(-1)) { disable_big(); $("ul.slide-show-gallery li:eq("+(actual+1)+") img").animate({width: "103px", height: "125px"}, {duration: 1000}); $("ul.slide-show-gallery li:eq("+(actual +1)+")").animate({paddingTop: "175px"}, {duration: 1000}); $("ul.slide-show-gallery li:eq("+actual+")").animate({paddingTop: "8px"}, {duration: 1000}); $("ul.slide-show-gallery li:eq("+actual+") img").animate({width: "351px", height: "465px"}, {duration: 1000}); $("ul.slide-show-gallery").animate({left:-121*(parseInt(actual)-1)}, {duration: 1500, complete: function() { hide_show_button_big(); }}); $("ul.slide-show-gallery li:eq("+(actual +1)+")").removeClass('main'); $("ul.slide-show-gallery li:eq("+actual+")").addClass('main'); } return false; }); $('#bigRight').click( function () { if (actual_change(+1)) { disable_big(); $("ul.slide-show-gallery li:eq("+ (actual-1)+")").animate({paddingTop: "175px"}, {duration: 1000}); $("ul.slide-show-gallery li:eq("+(actual-1)+") img").animate({width: "103px", height: "125px"}, {duration: 1000}); $("ul.slide-show-gallery li:eq("+actual+")").animate({paddingTop: "8px"}, {duration: 1000}); $("ul.slide-show-gallery li:eq("+actual+") img").animate({width: "351px", height: "465px"}, {duration: 1000}); $("ul.slide-show-gallery").animate({left:-121*(parseInt(actual)-1)}, {duration: 1500, complete: function() { hide_show_button_big(); }}); $("ul.slide-show-gallery li:eq("+ (actual-1)+")").removeClass('main'); $("ul.slide-show-gallery li:eq("+actual+")").addClass('main'); } return false; }); thank you in advance the full code in common.js i try to put no queue or queue false doesn't make different too just doesn't want to run parallel like left button the right button just a bit jumping .. thank you Cheers, Agus On Jun 30, 1:00 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > An initial look suggests that the "scroll+scale" (in parallel) from > left to right is working but the "right to left" is actually "scroll > then scale" (serial). I hope that makes sense. > > Karl Rudd > > On Mon, Jun 30, 2008 at 12:19 PM, agus david <[EMAIL PROTECTED]> wrote: > > > bump guys any help > > > thank you > > > David > > > On Jun 30, 12:26 am, agus david <[EMAIL PROTECTED]> wrote: > >> hi guys, > > >> i try to make jquery imagegallerytry to take advantage using > >> animation but i had issues when i try to animate to scroll from right > >> to left all looks good but the other way around from left to right it > >> doesn't look that smooth, it a bit jumping > > >> here thegalleryhttp://www.pagecraft.com.au/gallery/love-slideshow.html > > >> all the code in common.js > > >> anyone know what's wrong with it ? any comments or help much > >> appreciated. > > >> thank you > > >> Cheers, > > >> Agus