Facebook
From Unreliable Bushbaby, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 276
  1. <html>
  2. <head>
  3. <style>
  4. #left {float: left;height: 600px;cursor: pointer;}
  5. #gall {float: left;height: 600px;}
  6. #right {float: left;height: 600px;cursor: pointer;}
  7. .button {margin-top: 220px;}
  8. </style>
  9. </head>
  10. <body>
  11. <div id="left">
  12. <img class="button" src="images/lewo.png" alt="blad" height="100" width="100" onclick="lewo()">
  13. </div>         
  14. <div id="gall">
  15. <img id="fotki" src="images/dzik1.jpeg" alt="blad" height="600px" width="500px">
  16. </div> 
  17. <div id="right">
  18. <img class="button" src="images/prawo.png" alt="blad" height="110" width="100" onclick="prawo()">
  19. </div> 
  20. </body>
  21. </html>
  22. <script>
  23.  
  24. x = 1;
  25.  
  26. function lewo() {      
  27. x += -1;
  28. document.getElementById('fotki').src="images/dzik"+x+".jpeg";
  29. }
  30. function prawo() {     
  31. x += 1;
  32. document.getElementById('fotki').src="images/dzik"+x+".jpeg";
  33. }
  34.  
  35. </script>
  36.