Advertisement
DayDun

Chrome bg lag fix

Jan 11th, 2018
2,965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setInterval(function() {
  2.     document.body.style.backgroundPosition = document.body.style.backgroundPosition ? "" : "0 0";
  3. }, 1000 / 20);
  4. // replace 20 with the framerate of the gif
  5. // 1000 / 20 = the amount of milliseconds to wait between every background update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement