A client has asked for a page loader, something “attractive” to let the visitor know that the content is on its way. This is for standard html content – text, images, etc.
I have seen a few on the web, but many of them are dated and rather clunky. I am looking for something that is not a pain to implement but still looks decent.
Thanks in advance.
It wouldn’t be hard to build your own. You could have a page that shows an animated gif and then loads the page using AJAX. You can get some great loading gifs just by searching for something like “AJAX loading image”. This may or may not seem easy to you, but it doesn’t sound too hard to me if you were using jQuery and PHP.
Example
Say you have two files: test1.htm and test2.htm. You want to show the contents of test2 (which take a bit to load) on test1 (which should have the parts of the page that load quickly). Here’s the two files I made (this uses jQuery):
test1.htm
test2.htm
So this should work for what you’re planning to do. The important thing is that you try to divide up your page into parts that load quickly and parts that load slowly.