弹出一个遮罩层有正在加载效果的文字

红粒炊畲粟,青烟郁涧薪。得床思熟睡,寒犬苦狺狺。一生之中至少要有两次冲动,一次为奋不顾身的爱情,一次为说走就走的旅行。
实现:
复制代码
代码如下:

<!doctype html>
<html>
<head>
<title>遮罩层</title>
<meta charset="utf-8" />
<style>
#cover{
display:none;
position:fixed;
z-index:1;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.44);
}
#coverShow{
display:none;
position:fixed;
z-index:2;
top:50%;
left:50%;
border:1px solid #127386;
width:300px;
height:100px;
margin-left:-150px;
margin-top:-150px;
background:#127386;
}
</style>
<script>
function clickfunc()
{
alert("clicked, 遮住之前’测试‘按钮是起作用的");
}
function coverit()
{
var cover = document.getElementById("cover");
var covershow = document.getElementById("coverShow");
cover.style.display = 'block';
covershow.style.display = 'block';
alert("已经遮住,’测试‘按钮已经不起作用了");
}
</script>
</head>
<body>
<div id="cover"></div>
<div id="coverShow">
<table align="center" border="0" width="100%" cellspacing="0" cellpadding="0" style="border-collapse: collapse; height: 100px; min-height: 100px;" bgcolor="#127386">
<tr>
<td height="30" style="font-size: 12px;">正在加载,请稍后......</td>
</tr>
<tr>
<td align="center" bgcolor="#ffffff">
这里加载一个img src为动态的gif

</td>
</tr>
</table>
</div>
<div>
这里面是内容
<span>所有的内容都被cover遮住</span>
<div>
<font style="color:red">
两个遮罩层
<br/>
第一个遮罩层cover是将整个body盖住,width=100%,height=100%.
第二个遮罩层coverShow居中显示,可以在里面加载img元素。
</font>
</div>
<input type="button" value="测试" onclick="clickfunc()"/>
</div>
<input type="button" value="遮住" onclick="coverit()"/>
</body>
</html>

到此这篇关于弹出一个遮罩层有正在加载效果的文字就介绍到这了。我是一个平凡的人,我平凡但我并不平庸,我只是在等,等待化蛹为蝶的那个一刻。更多相关弹出一个遮罩层有正在加载效果的文字内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
css让页脚保持在底部位置的四种方案

CSS如何使用Flex和Grid布局如何实现3D骰子

Flex布局史上最简单使用语法教程

新的CSS 伪类函数 :is() 和 :where()示例详解

纯CSS打字动画的如何实现示例