alyus
alyus

Reputation: 1007

Need help recreating jquery effect

Need help replicating specific effect found on a site (link is below). The best I can describe is;

I have 18 different images, which once clicked should slide down a box display different images. The only site I've seen so far is the one listed below. If anyone can help, that would be awesome. Or if anyone could please direct me to a plugin that would be great as well. Thank you!

Link: http://giangnguyendesign.com/

Upvotes: 2

Views: 70

Answers (2)

Quincy
Quincy

Reputation: 4433

The site is using the vgrid plugin

http://blog.xlune.com/2009/09/vgrid/

http://jquerystyle.com/2010/03/25/vgrid

Upvotes: 1

K2so
K2so

Reputation: 982

It you want to replicate it, just go through the source of the site. HTML and JS are not compiled, so you should be able to see how it was exactly achieved.

But if you are just simply want to have a slide down effect, jquery has one already built-in, ie.

$("div").slideDown();

http://api.jquery.com/slideDown/

Upvotes: 1

Related Questions