jQuery Plugin To Create Fullscreen Preloading Effects fakeLoader js - Download jQuery Plugin To Create Fullscreen Preloading Effects - fakeLoader.js

Download jQuery Plugin To Create Fullscreen Preloading Effects – fakeLoader.js

Posted on

This time I will share jQuery Plugin and tutorial about jQuery Plugin To Create Fullscreen Preloading Effects – fakeLoader.js, hope it will help you in programming stack.

jQuery Plugin To Create Fullscreen Preloading Effects fakeLoader js - Download jQuery Plugin To Create Fullscreen Preloading Effects - fakeLoader.js
File Size: 39.4 KB
Views Total: 33847
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

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.

How to use it:

1. Include jQuery library and the jQuery fakeloader plugin’s Javascript & CSS in the document.

1 <link rel="stylesheet" href="css/fakeLoader.css">
2  
3 <script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
4 <script src="js/fakeLoader.min.js"></script>

2. Create an DIV element for the loading spinner.

1 <div class="fakeloader"></div>

3. Call the plugin on the DIV element to show a fullscreen loading spinner when page loads.

1 $(".fakeloader").fakeLoader();

4. Available options.

01 $(".fakeloader").fakeLoader({
02  
03 // Time in milliseconds for fakeLoader disappear
04 timeToHide:1200,
05  
06 // 'spinner1', 'spinner2', 'spinner3', 'spinner4', 'spinner5', 'spinner6', 'spinner7'
07 spinner:"spinner1",//Options:
08  
09 // Background color. Hex, RGB or RGBA colors
10 bgColor:"#2ecc71",
11  
12 // Custom loading GIF.
13 imagePath:"yourPath/customizedImage.gif"
14              
15 });

Changelog:

2019-02-26

  • v2.0.0

2018-12-20

  • Fix Bars Appears on Top Left Corner Before Centering

About Author:

Author: João Pereira

Website: http://joaopereirawd.github.io/fakeLoader.js/


This awesome jQuery plugin is developed by joaopereirawd. For more Advanced Usages, please check the demo page or visit the official website.

source : jquery.net