| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /**
- * 脚本名称:页面加载Loading脚本
- * 脚本说明:
- * 1.因为使用到document.body.scrollHeight对象,脚本引入时,脚本应放到body内,否则报错;
- * 2.loadingImage为loading的图片,您可以替换为您想要的图片;loading弹窗的样式可以通过代码修改;
- * 3.使用方法:弹出遮罩:whir.loading.add("加载中,请稍候", 1);扔掉遮罩: whir.loading.remove();
- * 脚本作者:zhangqs008@163.com
- * 更新说明:(haoyanbing 20171225)
- * 1. 使用CSS样式替换图片,需要引入loading.css
- * 2. 使用方法Loading.loading.show();Loading.loading.hide();
- */
- var Loading = window.Loading || {};
- Loading.loading =
- {
- show: function () {
- var arr = this.getPageSize();
- var width = parseInt(arr[2]);
- var height = parseInt(arr[3]);
-
- //背景遮罩
- var mask = document.createElement("div");
- mask.id = 'mask';
- mask.style.position = 'fixed';
- mask.style.left = '0';
- mask.style.top = '0';
- mask.style.width = '100%';
- mask.style.height = parseInt(arr[1]) + "px";
- mask.style.background = "#000";
- mask.style.opacity = 0.3;
- mask.style.zIndex = "10000";
- mask.addEventListener('touchstart', function (e) { e.preventDefault(); }, false); //触摸事件
- mask.addEventListener('touchmove', function (e) { e.preventDefault(); }, false); //滑动事件
- mask.addEventListener('touchend', function (e) { e.preventDefault(); }, false); //离开元素事件
- document.body.appendChild(mask);
-
- //提示文本
- var loading = document.createElement("div");
- loading.id = 'loading';
-
- var spinner = '<div class="spinner">'
- +'<div class="bar1"></div>'
- +'<div class="bar2"></div>'
- +'<div class="bar3"></div>'
- +'<div class="bar4"></div>'
- +'<div class="bar5"></div>'
- +'<div class="bar6"></div>'
- +'<div class="bar7"></div>'
- +'<div class="bar8"></div>'
- +'<div class="bar9"></div>'
- +'<div class="bar10"></div>'
- +'<div class="bar11"></div>'
- +'<div class="bar12"></div>'
- +'</div>';
- loading.innerHTML = spinner;
-
- loading.style.position = 'absolute';
- loading.style.left = ((width / 2) - 25) + "px";
- loading.style.top = (height / 2 - 25) + "px";
- loading.style.width = '50px';
- loading.style.height = "50px";
- loading.style.display = "inline-block";
- loading.style.padding = "0px 0px 0px 0px";
- loading.style.fontSize = " 1em";
- loading.style.fontFamily = " initial";
- loading.style.zIndex = "100001";
- // loading.style.background = "url(" + loadingImage + ") no-repeat fixed center";
- document.body.appendChild(loading);
- },
- hide: function () {
- var element = document.getElementById("mask");
- if(element){
- element.parentNode.removeChild(element);
- element = document.getElementById("loading");
- element.parentNode.removeChild(element);
- }
- },
- getPageSize: function () {
- var xScroll, yScroll;
- if (window.innerHeight && window.scrollMaxY) {
- xScroll = window.innerWidth + window.scrollMaxX;
- yScroll = window.innerHeight + window.scrollMaxY;
- } else {
- if (document.body.scrollHeight > document.body.offsetHeight) { // all but Explorer Mac
- xScroll = document.body.scrollWidth;
- yScroll = document.body.scrollHeight;
- } else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
- xScroll = document.body.offsetWidth;
- yScroll = document.body.offsetHeight;
- }
- }
- var windowWidth = 0;
- var windowHeight = 0;
- var pageHeight = 0;
- var pageWidth = 0;
-
- if (self.innerHeight) { // all except Explorer
- if (document.documentElement.clientWidth) {
- windowWidth = document.documentElement.clientWidth;
- } else {
- windowWidth = self.innerWidth;
- }
- windowHeight = self.innerHeight;
- } else {
- if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
- windowWidth = document.documentElement.clientWidth;
- windowHeight = document.documentElement.clientHeight;
- } else {
- if (document.body) { // other Explorers
- windowWidth = document.body.clientWidth;
- windowHeight = document.body.clientHeight;
- }
- }
- }
- // for small pages with total height less then height of the viewport
-
- if (yScroll < windowHeight) {
- pageHeight = windowHeight;
- } else {
- pageHeight = yScroll;
- }
- // for small pages with total width less then width of the viewport
- if (xScroll < windowWidth) {
- pageWidth = xScroll;
- } else {
- pageWidth = windowWidth;
- }
- var arrayPageSize = new Array(pageWidth, pageHeight, windowWidth, windowHeight);
- return arrayPageSize;
- }
- };
|