我的网站加载页面大约3秒然后加载jQuery加载器0-100%显示页面,它应该从加载0-100%开始然后显示整页。
答案 0 :(得分:0)
在
http://html.multipixels.net/moodie/js/custom.js
您正在运行该功能
jQuery("body").queryLoader2({
在
jQuery(document).ready
这意味着上面的函数只有在整个页面及其元素都已加载时才会运行,如果你想在不等待整个页面加载的情况下运行它,那么无条件地运行它,如下所示..
jQuery("body").queryLoader2({
barColor: "#3899b5",
backgroundColor: "#fff",
percentage: true,
barHeight: 4,
completeAnimation: "grow",
minimumTime: 500,
onComplete : function () {
self.loader.fadeOut(200);
}
});