How to remove the intro animation which appears during the load up of some WordPress themes? [closed]

The solution is to check the parent element of the animation using the inspector tool. When you find the very parent of the element, say its class is .loading-screen, then you simply add the rule at the bottom of your main queued CSS file:

.loading-screen{
    display: none !important;
}