Don't like ads? PRO users don't see any ads ;-)
Guest

Thumbnail Gallery

By: a guest on Aug 4th, 2012  |  syntax: None  |  size: 1.94 KB  |  hits: 144  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  5. </head>
  6.  
  7. <style type="text/css">
  8. @CHARSET "UTF-8";
  9.  
  10. body { font-family: Helvetica; font-size: 12px; color: #63665F }
  11.  
  12. #page { width: 700px; }
  13. #thumbs { padding-top: 10px; overflow: hidden; cursor: pointer; }
  14. #thumbs img, #largeImage { border: 1px solid gray; padding-top: 4px; padding-left: 4px; padding-right: 4px; padding-bottom: 35px; background-color: white; }
  15. #thumbs img { float: left; margin-right: 6px; margin-bottom: 6px; }
  16. #description { background: black; color: white; position: absolute; bottom: 0; padding: 10px; width: 480px; margin: 5px; }
  17. #panel { position: relative; }
  18. </style>
  19.  
  20. <body>
  21. <div id="page">
  22. <div id="gallery">
  23. <div id="panel">
  24. <img id="largeImage" src="images/image_01_large.jpg" />
  25. <div id="description">Caption here</div>
  26. </div>
  27. <div id="thumbs">
  28. <img src="images/image_01_thumb.jpg" alt="Caption here" />
  29. <img src="images/image_02_thumb.jpg" alt="Caption here" />
  30. <img src="images/image_03_thumb.jpg" alt="Caption here" />
  31. <img src="images/image_04_thumb.jpg" alt="Caption here" />
  32. <img src="images/image_05_thumb.jpg" alt="Caption here" />
  33. <img src="images/image_06_thumb.jpg" alt="Caption here" />
  34. <img src="images/image_07_thumb.jpg" alt="Caption here" />
  35. <img src="images/image_08_thumb.jpg" alt="Caption here" />
  36. <img src="images/image_09_thumb.jpg" alt="Caption here" />
  37. <img src="images/image_10_thumb.jpg" alt="Caption here" />
  38. <img src="images/image_11_thumb.jpg" alt="Caption here" />
  39. </div>
  40. </div>
  41. </div>
  42.  
  43. <script>
  44. $('#thumbs').delegate('img','click', function(){
  45. $('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
  46. $('#description').html($(this).attr('alt'));});
  47. </script>
  48.  
  49. </body>
  50. </html>