Loading Animation

Loading Animation

1. If you'd like to add the Loading Animation, please add the following code into html files.


<body>
<div id="fakeloader"></div><!-- end #fakeloader -->  // Please add this code at this position.
 <div id="boxed-layout">
  <div id="header-wrapper">

2. If you'd like to change the Loading Animation spinner, please change the following code in the js/custom.js.


	$("#fakeloader").fakeLoader({
		timeToHide:1200,
		bgColor:"#528fcc",
		spinner:"spinner7",  // spinner1, spinner2, spinner3, spinner4, spinner5, spinner6, spinner7
		zIndex: '9999999'
	});

Back to Top