gpt4 book ai didi

javascript - 仅在页面提交后显示具有透明背景的加载图像

转载 作者:太空宇宙 更新时间:2023-11-03 22:00:03 24 4
gpt4 key购买 nike

我想在页面提交后显示加载图像。我希望它就像在页面中间加载图像一样,它应该有一个透明的背景来显示页面内容。我使用了以下内容

    #loading {
position:fixed;
top:50%;
left:50%;
z-index:1104;
background-color:#999999;
width:100%;
height:100%;

}

请不要在答案中包含 javascript 部分,我只想了解样式。

这不是为整个页面提供背景颜色。请帮助我如何在页面中心显示加载图像并且页面内容应该略微显示。

谢谢

最佳答案

假设您想禁用与正在加载的内容的所有交互,您可以简单地覆盖该元素并将其背景居中:

#overlay { 
/*Cover the entire screen regardless of scrolling*/
position:fixed;top:0;right:0;bottom:0;left:0;
background: #ff0000 url(...) no-repeat 50% 50%;
}

Fiddled用于演示目的的半透明 bgcolor。

编辑:实际上使元素在垂直和水平方向上居中 is hard .

关于javascript - 仅在页面提交后显示具有透明背景的加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11132859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com