Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>object</title>
  6. </head>
  7. <body>
  8. <div class="wrap"></div>
  9. <div class="wrap"></div>
  10. <div class="wrap"></div>
  11. <div class="wrap"></div>
  12. <div class="wrap"></div>
  13. <div class="wrap"></div>
  14. <div class="wrap"></div>
  15. <div class="wrap"></div>
  16. <div class="wrap"></div>
  17. <div class="wrap"></div>
  18. <script>
  19. let box = document.querySelectorAll(".wrap");
  20.  
  21. for (let i = 0; i < box.length; i++) {
  22.  
  23. if (i % 2 == 0) {
  24. box[i].style.width = '30px';
  25. box[i].style.height = '30px';
  26. box[i].style.backgroundColor = 'red';
  27. } else {
  28. console.log('error');
  29. }
  30.  
  31. }
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement