-
image swap
Hi all,
I have seen a website online and i would like to so a similar site for a portfolio.
It uses javascript so that when i user clicks on the thumbnail image it shows a large picture and text bellow. How does it work?
here is the site:-
http://www.electrickeries.com/
thank you
-
-
-
-
It is just toggling of HTML codes really, whether with ajax or without depending on the amount of photos involved.
<table id="large" style="display:none">
<tr><td><img src="large"></td></tr>
<tr><td>My Photo</td></tr>
</table>
<img src="thumb" onclick="this.style.display='none';large.style.display='block';">
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks