hi Karl,

that's exactly the problem i dont know why i cannot make the otherway
around parralel like as i did from left to right the code exactly the
same i dont put any queue or something but it just look like it's not
in parallel before i try to put queue false doesn't make difference

the code in common.js here portion to move the picture

       $('#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;
        });

Any advice on the code or tips and tricks will be helpfull ...

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

Reply via email to