Skip to content

Instantly share code, notes, and snippets.

@albertodelax
Created August 21, 2015 22:16
Show Gist options
  • Save albertodelax/e10d6f2c76b5b3efb825 to your computer and use it in GitHub Desktop.
Save albertodelax/e10d6f2c76b5b3efb825 to your computer and use it in GitHub Desktop.
Cat and Laser Pointer
<!DOCTYPE HTML>
<html>
<head>
<title>Cat and Laser</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js"></script>
<style type="text/css">
html {
cursor: url('dot.png'), auto;
}
img {
position: absolute;
height: 40px;
transition: all 0.4s;
}
</style>
</head>
<body>
<img src="cat.png">
<script type="text/javascript">
$(document).on("mousemove", function(event){
$("img").attr('style', 'top: ' + event.pageY + 'px; left: ' + event.pageX + 'px;');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment