图片如下
例子
程序代码
代码如下 | 复制代码 |
<style type="text/css"> #loading{position:fixed;_position:absolute;top:50%;left:50%;width:120px;height:120px;overflow:hidden;background:url(images/loading.gif) no-repeat;z-index:10;display:none;} </style> <div id="loading"></div> <script type="text/javascript"> |
例子
1、Html代码
打开header.asp,在<body>下插入
代码如下 | 复制代码 |
<div id="loading"></div> |
2、Css代码
在layout.css中插入
代码如下 | 复制代码 |
#loading{position:fixed;_position:absolute;top:50%;left:50%;width:124px;height:124px;overflow:hidden;background:url(loaderc.gif) no-repeat;z-index:7; margin:-62px 0 0 -62px;} |
这里要用到一张124*124的gif动态图片
3、Js代码
在footer.asp中</body>之前插入
代码如下 | 复制代码 |
<script type="text/javascript"> jQuery.noConflict(); jQuery("#loading").fadeOut() </script> |
例子
代码如下 | 复制代码 |
body{ margin: 0; font-size: 12px; line-height: 100%; font-family: Arial, sans-serif; } .background { display: block; width: 100%; height: 100%; opacity: 0.4; filter: alpha(opacity=40); background:while; position: absolute; top: 0; left: 0; z-index: 2000; } .progressBar { border: solid 2px #86A5AD; background: white url(progressBar_m.gif) no-repeat 10px 10px; } .progressBar { display: block; width: 148px; height: 28px; position: fixed; top: 50%; left: 50%; margin-left: -74px; margin-top: -14px; padding: 10px 10px 10px 50px; text-align: left; line-height: 27px; font-weight: bold; position: absolute; z-index: 2001; } <div id="background" class="background" style="display: none; "></div> <div id="progressBar" class="progressBar" style="display: none; ">数据加载中,请稍等...</div> var ajaxbg = $("#background,#progressBar"); ajaxbg.hide(); $(document).ajaxStart(function () { ajaxbg.show(); }).ajaxStop(function () { ajaxbg.hide(); }); |
时间: 2024-09-20 20:38:57