swenn
swenn

Reputation: 33

Web image gallery - what has been used creating it?

I have met an interesting image gallery transition surfing the web several times and now I'm interested in how such an elegant solution has been made.

Gallery can be found here: http://nullstuff.com/nullfolio/#/portfolio The desired effect takes place when toggling between 'Everything' and 'Web Design'.

Could it be made purely with CSS?

Upvotes: 0

Views: 61

Answers (3)

lakshya_arora
lakshya_arora

Reputation: 791

First of all It is not possible to add click events in css.

therefore it is javascript This is known as an image carousel.

I made my own in jquery.

I can give you the source if you want.

Click on the image to see effect and see the url change and press back button.

You will find the previous page loaded with the effect.Moreover the scrollbar(horizontal) hides after poping which i think is made overflow-x:hidden in css.

Upvotes: 0

Swapnil
Swapnil

Reputation: 13

To create such elegant gallery JQuery can be used. You can find several JQuery galleries.

Look at this blog, I found http://vandelaydesign.com/blog/web-development/jquery-image-galleries/

I hope it helps.

Upvotes: 0

mheisig
mheisig

Reputation: 155

Based on the app.js source in the page, it's using the jQuery Quicksand plugin.

Upvotes: 1

Related Questions