Skip to content

Instantly share code, notes, and snippets.

@tristen
Forked from samanpwbb/gist:3866893
Created October 10, 2012 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tristen/3866903 to your computer and use it in GitHub Desktop.
Save tristen/3866903 to your computer and use it in GitHub Desktop.
var locked,
fadeOut;
b = $('.branding');
$('body').mousemove(function() {
if (fadeOut) clearInterval(fadeOut);
locked = false;
b.addClass('visible');
fadeOut = setInterval(function() {
if (!locked) b.removeClass('visible');
locked = true;
}, 3000); // Change the 3000 value to your liking.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment