Guest User

Untitled

a guest
Oct 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function setup() {
  2. //starter image
  3. image = createImg("welcome.gif");
  4. image.class('gif');
  5. //remove and then show new gif
  6. button.mousePressed(removeGif);
  7. button.mouseReleased(showGif);
  8. }
  9.  
  10. function showGif() {
  11. image = createImg(currentGif);
  12. image.class('gif');
  13. }
  14.  
  15. function removeGif() {
  16. a = selectAll('.gif');
  17. for (let i = 0; i < a.length; i++) {
  18. a[i].remove();
  19. }
  20. }
Add Comment
Please, Sign In to add comment