Tutorial: https://www.youtube.com/watch?v=yNZEsBu8VMs
<style>
body:hover .cursor {opacity:1.0;}
.cursor {pointer-events: none;}
</style>
<script>
// © Code by T.RICKS, <https://www.tricksdesign.com/>
// You have the license to use this code in your projects but not redistribute it to others
// .cursor class needs to have a mouse click interaction applied
$('a').mouseenter(function() {
$('.cursor').click();
});
$('a').mouseleave(function() {
$('.cursor').click();
});
</script>