Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var pageSettings = {
  2. red: 200,
  3. green: 200,
  4. blue: 200,
  5. background: 'https://pictures.s3.yandex.net/cover-wall.jpg'
  6. };
  7.  
  8. var bgColor = 'rgb(' + pageSettings.red + ', ' + pageSettings.green + ', ' + pageSettings.blue + ')';
  9. document.body.style.backgroundColor = bgColor;
  10.  
  11. var header = document.getElementById('main-header');
  12. console.log(header);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement