Advertisement
Guest User

Untitled

a guest
Sep 4th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. const body = document.getElementsByTagName('body')[0];
  2. body.style.backgroundColor = 'black';
  3.  
  4. let yellowlogo = document.getElementsByClassName('logo')[0];
  5. yellowlogo.style.bottom = '30px';
  6.  
  7. window.onscroll = function (event) {
  8. const scroll = window.pageYOffset;
  9.  
  10. if (scroll < 750) {
  11. body.style.backgroundColor = 'black';
  12. } else {
  13. body.style.backgroundColor = 'white';
  14. }
  15.  
  16. if (scroll < 200) {
  17. yellowlogo.style.bottom = '30px';
  18. } else {
  19. yellowlogo.style.bottom = '-50px';
  20. }
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement