Reputation: 3066
i need jquery for images display like in the below URL.
http://www.yessy.com/sujatatibre/collectors.html?p=1
i didn't find any jquery in the web for that.how can i display like that?.
Upvotes: 0
Views: 288
Reputation:
in a project where i need to show large image on click of image :-
i pass the big image reference as href of anchor who i put upon image and show them in fancybox when user click on it.
you can find out fancybox
the mockup someting like
<a href="mybigimage.png"><img src="small.png" alt="small image"/></a>
Upvotes: 0
Reputation: 943157
They don't use JavaScript. They just have two versions of each image, a small one and a large one, then they:
<a href="document-that-includes-the-large-image.html">
<img src="the-small-image.jpeg" …>
</a>
Upvotes: 1