Adding cursor effect

Hi!
I found cool & funny cursor effect on this website.
https://tholman .com/cursor-effects/

And I want to add the effect to my website.
https://github. com/tholman/cursor-effects/blob/master/src/emojiCursor.js

Is hovering effect possible behind moving mouse ?
Its javascript and I think its possible with wix code, but I don’t know how to do it.
Please help me in doing this with wix code on website!

Only with custom elements or htmlComponents.

I added custom element and hosted corvid file in it.
But it dosen’t work …
how does it work??
I can’t get it:(

@eojp624 getting into details for how to implement an specific external library and use it inside a custom element is not in the scope of this forum.
If someone has done it before, he/she is invited to explain, but otherwise I think you’ll have to make your own research.

Hi @eojp624 !!!
If you are using a html component as @jonatandor35 said, you can try this →

<!doctype html>
<html>
<head>
<script type="text/javascript">
   


</script>

<style type="text/css">
body, html {
  cursor: url(http://www.picgifs.com/food-and-drinks/food-and-drinks/eggs/food-and-drinks-eggs-252212.gif), pointer;

}
</style>
</head>

<body>
<div id="cursor" ></div>
</body>
</html>

:wink:

:goat: TY