Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Last active May 27, 2016 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/2368554f2615b4a1b1505099a12e61af to your computer and use it in GitHub Desktop.
Save marcusshepp/2368554f2615b4a1b1505099a12e61af to your computer and use it in GitHub Desktop.
Javascript Element Follows Mouse Movement
// <div class="foo">I follow</div>
window.addEventListener("mousemove", function(e){
$(".foo").css({
left: (e.pageX - ($(window).width() * .35)),
top: (e.pageY - 600)
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment