如何在屏幕中心设置ajax的更新进度。当我向下滚动页面时,问题就出现了,它出现在滚动的屏幕的上半部分。
<div class="CenterPB" style="height:60px;width:60px;" >
<img alt="Loading..." src="abc.gif" width="16" height="16" border="0">
</div>
<style type="text/css" media="screen">
.CenterPB{
position: absolute;
left: 50%;
top: 50%;
margin-top: -30px; /* make this half your image/element height */
margin-left: -30px; /* make this half your image/element width */
}
</style>
答案 0 :(得分:1)
答案 1 :(得分:0)
我从下面链接找到了解决方案。 http://devarchive.net/update-progress-indicator.aspx