Advertisement
Guest User

Untitled

a guest
Sep 14th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.  
  5. </head>
  6. <title>
  7.  
  8. </title>
  9.  
  10. <script>
  11.  
  12. var image;
  13. var imageSchedule;
  14.  
  15. var score = 0 ;
  16.  
  17. function startAnimation(){
  18. var displayimage = document.getElementById("image");
  19. displayimage.src = "https://www.uow.edu.au/~dong/w3/assignment/a5/happy_fish.png";
  20. imageSchedule = setInterval(showimage, 1000);
  21. }
  22.  
  23.  
  24.  
  25. function showimage(){
  26.  
  27. var displayimage = document.getElementById("image");
  28.  
  29. if (displayimage.src == "https://www.uow.edu.au/~dong/w3/assignment/a5/happy_fish.png" {
  30. displayimage.src = "https://www.uow.edu.au/~dong/w3/assignment/a5/sad_fish.png";
  31.  
  32. }
  33.  
  34.  
  35. else if (displayimage.src == "https://www.uow.edu.au/~dong/w3/assignment/a5/sad_fish.png" {
  36. displayimage.src = "https://www.uow.edu.au/~dong/w3/assignment/a5/happy_fish.png";
  37. }
  38.  
  39. }
  40. function stopimage(){
  41. clearInterval(imageSchedule);
  42.  
  43. }
  44.  
  45. function score(){
  46. var image = document.getElementById("image");
  47.  
  48. if image.src == "https://www.uow.edu.au/~dong/w3/assignment/a5/happy_fish.png" {
  49. score += 1;
  50. }else if image.src == "https://www.uow.edu.au/~dong/w3/assignment/a5/sad_fish.png"{
  51. score -= 1;
  52. var span = document.getElementById("image123");
  53. span.innerHTML = score;
  54. }
  55.  
  56. }
  57.  
  58.  
  59. </script>
  60.  
  61.  
  62.  
  63. <body>
  64.  
  65.  
  66. <button onClick="startAnimation()" >
  67. Start Animation
  68. </button>
  69.  
  70. <button onClick="stopimage()" >
  71. Stop Animation
  72. </button>
  73. <br>
  74. <br>
  75.  
  76.  
  77.  
  78.  
  79. <br>
  80.  
  81. <img id="image" onclick="score()">
  82.  
  83. <br>
  84.  
  85. Your score: <span id="image123" ></span>
  86.  
  87.  
  88.  
  89.  
  90.  
  91. </body>
  92.  
  93. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement