Guest User

Untitled

a guest
Jun 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. img {
  6. border:0;
  7. }
  8. .Big {
  9. width:340px;
  10. height:255px;
  11. }
  12. .Thumbnail {
  13. width:80px;
  14. height:60px;
  15. }
  16. </style>
  17. <script type="text/javascript">
  18. function showImg(img) {
  19. document.getElementById('main'
  20. ).src = img;
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <img id="main" class="Big" src="MAIN IMAGE 1 URL">
  26. <br/>
  27. <img class="Thumbnail" src="MAIN IMAGE 1 URL" onclick="showImg(this.src)"/>
  28. <img class="Thumbnail" src="MAIN IMAGE 2 URL" onclick="showImg(this.src)"/>
  29. <img class="Thumbnail" src="MAIN IMAGE 3 URL" onclick="showImg(this.src)"/>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment