fakeLoader.js是一款轻量级的 jQuery 炫酷页面预加载Loading特效插件。它能帮助我们创建一个全屏遮罩效果的旋转loading效果来模拟页面预加载过程。
使用方法
在
<link rel="stylesheet" href="yourPath/fakeLoader.css">
在页面底部引入jQuery和fakeLoader.min.js文件。
<script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"> <script src="yourPath/fakeLoader.min.js">
基本使用方法:
<script type="text/javascript"> $("#fakeloader").fakeLoader(); </script>
带参数调用:
<script type="text/javascript"> $("#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 }); </script>
可用参数
timeToHidenumbers:fakeLoader消失的时间,单位毫秒。
zIndex:默认的zIndex。
spinner:可选的spinner:'spinner1', 'spinner2', 'spinner3', 'spinner4', 'spinner5', 'spinner6', 'spinner7'。
bgColor:全屏遮罩的背景颜色。可以是hex、RGB 或 RGBA 颜色值。
imagePath:如果你想自定义图片,使用该选项。
更多关于该页面预加载Loading特效的信息请参考:https://github.com/joaopereirawd/fakeLoader.js
转自http://www.htmleaf.com/jQuery/Layout-Interface/201501241270.html
声明:本文采用 BY-NC-SA 协议进行授权,如无注明均为原创,转载请注明转自 你好!刘
本文地址:jQuery炫酷页面预加载Loading特效插件
本文地址:jQuery炫酷页面预加载Loading特效插件
发表评论