<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
</head>
<body>
<div class="pointer"> <img src="https://thumbs.gfycat.com/AmusingFriendlyBarasingha-size_restricted.gif" class="gif" alt=""> </div>
</body>
</html>
html {
cursor: none;
overflow: hidden;
}
.pointer {
position: absolute;
height: 480px; top:100px;
width: 480px; left:50%;
pointer-events: none;
}
.pointer img {
width: 140px;
}
$(document).mousemove(function (e) {
$(".pointer").css({ left: e.pageX, top: e.pageY });
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.