Currently, I am attempting to extract the CSS and JS code of an image reveal animation that is part of a static HTML page:
https://i.stack.imgur.com/bnmaO.gif
The challenge lies in the fact that the desired effect is one among many showcased image animations within a large CSS and JS file. It is proving to be quite difficult to isolate only the necessary lines of code from this extensive file:
The image animation can be found in the 'good design - good business' section
Although I have identified some of the relevant code related to the animation, like:
<div class="block-revealer__element" style="transform: scaleX(0); transform-origin: 100% 50%; background: rgb(240, 240, 240); opacity: 1;"></div>
I now face the daunting task of manually combing through thousands of lines of JavaScript in a reverse engineering process to find all other necessary CSS components.
This manual search not only consumes a significant amount of time but also introduces errors. Moreover, it requires a tedious trial-and-error phase to ensure that all essential parts have been correctly identified and copied.
Is there a more efficient method or tool available that can help pinpoint specific CSS and JavaScript elements without the need for laborious manual searching?