tags:

views:

49

answers:

1

Hello,

I would like to know how this type off slider ,- the arrow next to the picture is sliding-, could be acomplished with jquery. I can see in firebug, that it is made with flash

It does not seem to be overly complicated to acomplish it with jquery ,but that´s not saying that I already know.

What would be the best way to do this

thanks, Richard

+1  A: 

I would suggest you take a look at the jQuery animate function - using this in conjunction with a CSS positioned DIV or image should allow you to do what you want.

Mark B
thanks, so that´s basicly how a slider works also, I guess.Then I know what to google for.
Richard
Yes, you can slide elements quite easily, and there's built in easing, timing etc.
Mark B
I was thinking off a slider plugin, but I don´t know what the big advantage would be.
Richard
You don't really need an external plugin for this simple animation - animate() will do everything you need I think.
Mark B