読み込みに20-30秒かかるWebページがあります。ページの読み込みが完了すると閉じるポップアップ(「しばらくお待ちください...」)を開くことは可能ですか?私は以下を試しましたが、うまくいきません。ページは、ポップアップは表示されません。私は開発プラットフォームとしてFirefoxを使用しています。条件を反転すると(#container hidden/noneとclosePopup()がvisible/blockにリセットされます)、完全に動作します(ページのロードが完了するとポップアップが表示されます)。 2番目の質問として、私はこれを働かせても、それは非常にブラウザに依存するでしょうか?ありがとう!ページ読み込み中にCSSポップアップを開いて、ページ読み込みが完了したらCSSを閉じる方法
<html><head><style>
#container{
width : 100%;
height : 100%;
top : 0;
position : absolute;
visibility : visible;
display: block;
background-color : rgba(22,22,22,0.5);
}
#popup{
position : relative;
margin: 0 auto;
top: 35%;
width : 300px;
padding : 10px;
border : 1px solid black;
background : yellow;
box-shadow: 5px 5px 5px #252525;
}
</style>
<script language="javascript">
function closePopup(){
document.getElementById('container').style.visibility = "hidden";
document.getElementById('container').style.display = "none";
}
</script></head><body onload="closePopup();">
<div id="container"><div id="popup">Please Wait...</div></div>
20 seconds worth of stuff happens here.
</body></html>
W3によると、defer属性は