html5 自定义遮罩
教程管理员 发布于2023-09-27 08:36 HTML教程 139
简介:
ys_loading.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
.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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
( 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);
|
附件:http://down.51cto.com/data/2368264
本文转自 antlove 51CTO博客,原文链接:http://blog.51cto.com/antlove/1862623
相关推荐
- 10-04 在HTML中取得请求中的参数
- 10-04 SharePoint 2013 母版页取消和HTML页关联
- 10-04 29行代码使用HTML5 Canvas API绘制一颗红心
- 10-04 浏览器加载和渲染html的顺序,Div和Table的区别
- 10-04 《HTML5完美游戏开发》——2.6 Processing.js实例和整合
- 10-04 如何关闭Struts2的webconsole.html
- 10-04 《HTML5 开发实例大全》——1.4 使用CSS修饰HTML 5页面
- 10-04 《HTML5游戏编程核心技术与实战》——2.8 小结
- 10-04 腾讯视频生成的Html代码
- 10-04 ie下tbody的innerhtml属性只读
- 控制面板
- 友情链接
- 最近发表
-
- 涂鸦而不乱简约艺术主题Office PPT免费模板背景素材下载
- 有创意的情人表白动态贺卡Office PPT免费模板背景素材下载
- 绿色简约技能竞赛电力Office PPT免费模板背景素材下载
- 极简几何商务蓝年终总结汇报Office PPT免费模板背景素材下载
- 蓝橙简约商务年终总结汇报Office PPT免费模板背景素材下载
- 绿色清新教育风课堂教学通用Office PPT免费模板背景素材下载
- 潮流复古艺术感年终总结Office PPT免费模板背景素材下载
- 浅绿商务风工作总结报告Office PPT免费模板背景素材下载
- 大气简约时尚年终总结汇报Office PPT免费模板背景素材下载
- 喜庆春节风公司年终誓师表彰大会Office PPT免费模板背景素材下载
- 最新留言
-