Skip to content

Instantly share code, notes, and snippets.

@jbrz0
Created April 4, 2016 02:57
Show Gist options
  • Save jbrz0/ca4e5371e76202962e6ca462fae8d502 to your computer and use it in GitHub Desktop.
Save jbrz0/ca4e5371e76202962e6ca462fae8d502 to your computer and use it in GitHub Desktop.
jQuery horizontal background w/ cursor
$(window).mousemove(function (e) {
var mousePosX = (e.pageX / $(window).width()) * 100;
var mousePosY = (e.pageY / $(window).height()) * 100;
// console.log(mousePosY)
$('.thumbs-block').css('backgroundPosition', mousePosX + '% ' + mousePosY +'%');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment