I was trying to find a jQuery plugin that will achieve similar preloading effect like on this website Example, After intense research I wasn’t able to find anything useful. Can anyone suggest a plugin that can achieve this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Go to your Example page and inspect it with firebug … If you remove the
class="ready"from the body tag then you will see the actuall div that is overlayed over the entire page.So all it is, is a div with transparency and an image at the center with a very high z-index.
When everything is loaded underneath you trigger a hide of the div … and the page is there.
You could fire the hiding after the dom is ready or after a timeout etc…