Advertisement
Guest User

Untitled

a guest
Aug 15th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function InitButton() {
  2.   let button4 = document.getElementById('button4');
  3.   button4.addEventListener("click", Button4);
  4. }
  5.  
  6. function randSize(itemId) {
  7.   let item = document.getElementById(itemId);
  8.  
  9.   item.style.width = Math.floor(Math.random() * Math.floor(120)) + 'px';
  10.   item.style.height = Math.floor(Math.random() * Math.floor(120)) + 'px';
  11. }
  12.  
  13. function Button4() {
  14.   randSize("box1");
  15.   randSize("box2");
  16.   randSize("box3");
  17. }
  18.  
  19. InitButton();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement