How to Add jQuery Full Screen Page Preloader Effect on Blogger
Pretty posts
Live Demo
Previously, i have wrote an script on jQuery preloader animation effect for webdesign developer. My one of the reader message me on facebook that he want to add this on his site. I help him on facebook to add this on his website. And i thought that i need to write an tutorial on this.
Sometimes your website taking more times to loading. That's can be frustration for your readers. By adding this jQuery preloader effect, it can be reduced your reader frustration. When a visitor visit your website, they will see it. Then after full page content load, it will be removed.
Let's follow below step to add this on your blogger/blogspot site.
Previously, i have wrote an script on jQuery preloader animation effect for webdesign developer. My one of the reader message me on facebook that he want to add this on his site. I help him on facebook to add this on his website. And i thought that i need to write an tutorial on this.
Sometimes your website taking more times to loading. That's can be frustration for your readers. By adding this jQuery preloader effect, it can be reduced your reader frustration. When a visitor visit your website, they will see it. Then after full page content load, it will be removed.
How to Add jQuery Preloader Effect on Blogger
Let's follow below step to add this on your blogger/blogspot site.
- Login to your blogger dashboard
- Go to Theme>Edit HTML
- Click on Edit HTML
- Click anywhere inside the code area or you can read How to Search code in Blogger
- Press CTRL+F from keyboard and you will see a search box
- Search following code
- Paste below code above ]]></b:skin> tags
- Again search following code
- After finding anyone of these code, just paste following code after it
- Again search following code
- Paste following code before </body> tags
- Click on Save template. That's it.
]]></b:skin>
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #222222;
z-index: 99999;
height: 100%;
}
#status {
position: absolute;
left: 50%;
top: 50%;
width: 64px;
height: 64px;
margin: -32px 0 0 -32px;
padding: 0;
}
<body>or
<body expr:class='"loading" + data:blog.mobileClass'>
<div id='preloader'>
<div id='status'>
<img alt='' height='64' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtoPt-rNLsJQhCGl8ssSfz_b3T9NAXrU4W1Gn2s580D9W1IgzdueYwRx8YuJnisAGIHUCcBbZ5Mk3ThUimUNmSX-i76Qzh4pcOP6vjCOuQP_5kKn2nVxR-hhyEsZRkbdNe1ylWBY2G2Uw/s1600/preloader.gif' width='64'/>
</div>
</div>
</body>
<script>
/*====================================
* Preloader Effect
* www.codiblog.com
======================================*/
$(window).load(function() {
$("#status").fadeOut("slow");
$("#preloader").delay(500).fadeOut("slow").remove();
})
</script>
I hope that you have enjoyed this post. Happy Commenting!




Its fully loading not opening
ReplyDeleteWe have checked it. All working good. can you give me your website url?
Deletenot working!!!
ReplyDeleteHave you installed jQuery in your template? If not then it will not work. See below post
Deletehttp://www.codiblog.com/2016/09/add-jquery-to-blogger.html
Not Work on mobile version ?
ReplyDeleteWhat's the problem? can you give me your website url, i will check it.
Delete