61,125
社区成员
发帖
与我相关
我的任务
分享<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>css.textFloatOnImg.html</title>
<meta name="generator" content="editplus" />
<meta name="author" content="Gao YiXiang" />
<meta name="email" content="yixianggao@126.com" />
<meta name="keywords" content="javascript dhtml dom" />
<meta name="description" content="I love web development." />
<style type="text/css">
*
{
margin: 0;
padding: 0;
}
.container
{
border: 1px dotted red;
width: 200px;
height: 100px;
}
.container img
{
padding: 1px;
border: 1px dotted blue;
}
.container .loading
{
position: absolute;
z-index: 100;
width: 100%;
background-color: #ffffff;
color: #0096ff;
filter: alpha(Opacity=80);
}
</style>
</head>
<body>
<br /><br />
<div class="container" align="center">
<div id="divLoading" class="loading">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<!-- 宽度与 container 一致!,td 里随便放! -->
<td height="100px" valign="middle" align="center">
WELCOME TO CSDN<br />
Loading ... ...<br /></td>
</tr>
</table>
</div>
<table height="100%" width="100%" border="0">
<tr>
<td align="center">
<!-- 下载完毕后隐藏 divLoading -->
<img src="http://www.csdn.net/Images/logo_csdn.gif" onload="divLoading.style.display='none';" />
</td>
</tr>
</table>
</div>
</body>
</html>