How can I code similar amazing visual effect from iohk.io website?

Go to this website and move your mouse there, you will see how it flashes and flares
https://iohk.io/

In the inspect mode, I dont know where to look for to see how it was implemented.

As chrome dev tools is very complex - where should I look into?

I attached

monitorEvents(document.body, “click”)

but it only works for clicks, obviously.

They might be using hover selectors, or perhaps they utilize CSS animations or some form of jQuery [animate] (http://api.jquery.com/animate/) (or even something else related to jQuery, it has a large library of neat functions for controlling actions when clicking etc.)

If you’re curious as to where to find their local/external scripts, checkout the “sources” tab on chrome web tools :slight_smile:

1 Like

demo page
http://haxiomic.github.io/GPU-Fluid-Experiments/html5/

2 Likes