I did the animation this way on my main page:
<div id="loading" style="text-align: center" hidden><asp:Image ID="loadingImage" runat="server" ImageUrl="~/Images/loading.gif" /></div>
and then I used jQuery this way
<script> function showLoading() { $("#loading").show(); } var loadingTimeout = setTimeout(showLoading, 3000); $(document).ready(function() { clearTimeout(loadingTimeout); </script>
Hope this helps.
source share