Guest User

Untitled

a guest
May 6th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var timeout = null;
  2.  
  3. $(document).on('mousemove', function() {
  4. if (timeout !== null) {
  5. $(".autohide").show();
  6. clearTimeout(timeout);
  7. }
  8.  
  9. timeout = setTimeout(function() {
  10. $('.autohide').hide();
  11. timeout = null;
  12. }, 5000);
  13. });
Add Comment
Please, Sign In to add comment