0
paradoxit created
Where/how do I change the loading animation when first visiting the site? It's currently a spiner with circles of grey and black.
Thanks, David
2 Answer(s)
-
0
Hi,
It is done in main.ts here <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/blob/dev/angular/src/main.ts#L20">https://github.com/aspnetzero/aspnet-ze ... ain.ts#L20</a>. The line abp.ui.setBusy(); shows this animation and it uses blockUI plugin <a class="postlink" href="http://malsup.com/jquery/block/#page">http://malsup.com/jquery/block/#page</a>. You can see how to use a custom style in it's examples.
-
0
Thank you