首页 > 代码库 > css 正在加载
css 正在加载
/*蒙版*/ .loading-mask { width: 100%; height: 100%; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; opacity: 0.3; filter: alpha(opacity = 30); z-index: 10000; } /*动态加载图片*/ .loading { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: url(loading.gif) 50% 50% no-repeat; z-index: 10010; }
//增加body遮罩 function maskElement(maskLevel) { if (!maskLevel) { maskLevel = ‘0‘; } if ($(".mask-level-" + maskLevel).length == 0) { $("body").append(‘<div class="loading-mask mask-level-‘ + maskLevel + ‘"></div>‘); } } //取消body遮罩 function unmaskElement(maskLevel) { if (!maskLevel) { maskLevel = ‘0‘; } $(".mask-level-" + maskLevel).remove(); } function loadingShow(isMask) { if (isMask) { common.maskElement("0"); } if ($(".loading").length == 0) { $("body").append(‘<div class="loading"></div>‘); } } function loadingHide() { unmaskElement("0"); $(".loading").remove(); }
css 正在加载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。