I would like to place a "please wait, loading" spinning circle animation on my site. I'm having trouble to find a plugin for it, so here I am asking a weird question :)
Thank you for your help.
|
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
You could do this various different ways. It could be a subtle as a small status on the page saying "Loading...", or as loud as an entire element graying out the page while the new data is loading. The approach I'm taking below will show you how to accomplish both methods. The SetupLet's start by getting us a nice "loading" animation from http://ajaxload.info ( I'll be using http://i.stack.imgur.com/FhHRx.gif ). Let's create an element that we can show/hide anytime we're making an ajax request:
The CSSNext let's give it some flair:
And finally, the jQueryAlright, on to the jQuery. This next part is actually really simple:
That's it! We're attaching some events to the body element anytime the See it in action: http://jsfiddle.net/jonathansampson/VpDUG/170/ |
|||||||||||||||||||
|
|
Along with what Jonathan and Samir suggested (both excellent answers btw!), jQuery has some built in events that it'll fire for you when making an ajax request. There's the
...and it's brother, the
Together, they make a fine way to show a progress message when any ajax activity is happening anywhere on the page. HTML:
Script:
|
|||||
|
|
You can grab an animated GIF of a spinning circle from Ajaxload - stick that somewhere in your website file heirarchy. Then you just need to add an HTML element with the correct code, and remove it when you're done. This is fairly simple:
You then just need to use these methods in your AJAX call:
This has a few caveats: first of all, if you have two or more places the loading image can be shown, you're going to need to kep track of how many calls are running at once somehow, and only hide when they're all done. This can be done using a simple counter, which should work for almost all cases. Secondly, this will only hide the loading image on a successful AJAX call. To handle the error states, you'll need to look into |
|||||||||||
|
|
Jonathon's excellent solution breaks in IE8 (the animation does not show at all). To fix this, change the CSS to:
|
||||
|
|
jQuery provides event hooks for when AJAX requests start and end. You can hook into these to show your loader. For example, create the following div:
Set it to Then, you can use something like the following to make it be shown automatically when sending Ajax requests:
Simply add this Javascript block to the end of your page before closing your body tag or wherever you see fit. Now, whenever you send Ajax requests, the |
|||||||
|
|
http://jquery.malsup.com/block/#page This is a jquery plugin which i had used for blocking my screens while i am processing the request on the backend. |
|||
|
|
|
If you are using Turbolinks With Rails this is my solution: This is the CoffeeScript
This is the SASS CSS based on the first excellent answer from Jonathan Sampson
|
||||
|
|
|
The showLoading plugin also does this quite well: |
|||
|
|
|
For those requiring an image-free solution, take a look at spin.js. Light-weight and easy to implement. (Credit to F. Gnass) |
|||
|
|
|
This is my first preloader. It's very simple. While page is loading, it shows preloader, and then hide preloader and show page. You can add preloading image in preload div. Very simple, just few lines of code. Preload web site using jquery (simple) |
|||
|
|