Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <DOCTYPE html>
  2. <html lang=pl>
  3. <head>
  4. <meta charset=utf-8>
  5. <title>OnClick1</title>
  6. <h1>zmiana obrazka po kliknięciu w niego</h1>
  7. </head>
  8. <body>
  9. <img id=img1 src=1.jpg alt=plik.jpg>
  10. <script>
  11. "use strict";
  12. var ktory=2;
  13. function nastepny(){
  14. document.getElementById("img1").src= ktory+".jpg"
  15. ktory++;
  16. if (ktory==4){
  17. ktory=1;
  18. }
  19. }
  20. window.onload=function(){
  21. document.getElementById("img1").onclick=nastepny;
  22. }
  23. </script>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement