Download Demo
fakeLoader.js is a lightweight jQuery plugin that helps you create an animated spinner with a fullscreen loading mask to simulate the page preloading effect.
1. INCLUDE CSS AND JS FILES
<link rel= "stylesheet" href= "yourPath/fakeLoader.css" > <script src= "yourPath/fakeLoader.min.js" > |
<div id= "fakeLoader" ></div> |
$( ".fakeloader" ).fakeLoader(); |
$(
".fakeloader"
).fakeLoader({
timeToHide:1200,
//Time in milliseconds for fakeLoader disappear
zIndex:
"999"
,
//Default zIndex
spinner:
"spinner1"
,
//Options: 'spinner1', 'spinner2', 'spinner3', 'spinner4', 'spinner5', 'spinner6', 'spinner7'
bgColor:
"#2ecc71"
,
//Hex, RGB or RGBA colors
imagePath:
"yourPath/customizedImage.gif"
//If you want can you insert your custom image
});
No comments:
Post a Comment