首页 > 代码库 > html5 自定义遮罩
html5 自定义遮罩
ys_loading.css
.ys-loading{ position:fixed; top:0; bottom:0; left:0; right:0; z-index: 9999; } .ys-loading em{ position:absolute; left:0; right:0; top:0; bottom:0; width:44px; height:44px; margin:auto; border-radius: 22px; opacity: 0.3; overflow: hidden; } .ys-loading em:before{ content:""; display:block; width:46px; height:46px; background:url(../../images/common/ajax-loader.gif) no-repeat center center; background-size:contain; margin-top:-1px; margin-left:-1px; }
ys_loading.js
(function($){ var container = null; var html = "<div class=‘ys-loading‘><em></em></div>"; function render(){ container = $(html).appendTo("body"); } var initialized = false; function init(){ if(initialized){ return; } initialized = true; render(); } var LoadingWidget = { showLoading:function(){ init(); container.show(); }, hideLoading:function(){ container.hide(); } }; window.LoadingWidget = LoadingWidget; })(jQuery);
html5 自定义遮罩
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。