JSFiddle - React, Tailwind, and code Playground
by totoromaum
HTML
<!DOCTYPE html>
<html>
<head>
<title>Mousemove</title>
</head>
<body>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQG1hG1qJh1LgpXlrg3mjfsFXA1NdTbdVwg-_ztkztvry4lChuFqw">
<script src="https://code.jquery.com/jquery-2.1.0.js"></script>
<script>
$("html").mousemove(function(event) {
$("#heading").offset({
left: event.pageX,
top: event.pageY
});
});
</script>
</body>
</html>