I have a node.js web app with a main layout page containing the pre-loader.
In the views I have containers that I would like to animate.
'projects.ejs' page:
<header class="text-center mt-5" dmx-animate-enter="fadeInDown" style="color: #000096;">
<i class="fa-clipboard-list-check fa-3x icon_header far" style="color: #000096;"></i>
<h1 class="font-monospace fw-bold">PROJECTS</h1>
</header>
main layout page:
<dmx-preloader id="preloader1" color="#674EA7" spinner="wanderingCubes"></dmx-preloader>
Due to size amount of data being loaded from the db the preloader takes a bit of time to complete, (varying from half a second to 1.5 seconds approx)
By the time the preloader has completed the animation has also completed on the page and is not visible.
How would i trigger the animation after the completion of the preloader so it is visible?