0

I am looking for a Jquery image gallery which have vertical thumbnail like at the following page.

http://realtyexecutivesofnewyork.com/product_detail.php?ml_num=2275875.

Can anybody point out me to something similar jquery solution.

Cœur
  • 37,241
  • 25
  • 195
  • 267
kakaajee
  • 227
  • 1
  • 9
  • 20

2 Answers2

0

The site you are referring uses, a vertical menu scroll plugin

perhaps this one.

and the code is somewhat like this

$('.myMenu').scrollIt({
         scrollDuration : 250,
         scrollItwrapper : 'myMenuScroll'
    });    

});

And on clicking that link, it just changes the src attribute of img element, and loads the image (No wonder if your internet connection is slow, you will see that image take a lot to load).

You will find more better at here.

S L
  • 14,262
  • 17
  • 77
  • 116
  • Thanks for the code link, but I was asking for Jquery plugin similar to this one, and the link of the examples don't have any vertical thumbnail scroller – kakaajee Apr 18 '11 at 07:33
  • @kakaajee, you want jCarousel, check my answer. – Alex Apr 18 '11 at 08:31
0

In my opinion, jCarousel is by far the best plugin for this sort of thing, this is what you want

If you need a hand setting it up, just shout.

Alex
  • 8,875
  • 2
  • 27
  • 44
  • Alex thanks for your answer, but I am not good in Jquery. I was asking if there is some solution available. If you any idea, share with us. – kakaajee Apr 18 '11 at 11:15
  • @kakaajee, I have shared my idea 'jCarousel' – Alex Apr 18 '11 at 11:41