Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var s = 0;
  2. var colorDirection = 1;
  3.  
  4. setInterval(function () {
  5. document.body.style.backgroundColor = 'hsl(269, ' + s + '%, 50%)'
  6.  
  7. s += colorDirection
  8.  
  9. if (s > 100) {
  10. colorDirection = -1
  11. s = 100
  12. } else if (s < 0) {
  13. colorDirection = 1
  14. s = 0
  15. }
  16. }, 10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement