<style> html{ display: none; <!--開始的時候讓頁面全部隱藏--> } </style> <script> function Web_Presentation() { document.querySelector('html').style.display='block ...
<style>
html{
display: none; <!--開始的時候讓頁面全部隱藏-->
}
</style>
<script>
function Web_Presentation() {
document.querySelector('html').style.display='block'
}
window.onload=Web_Presentation //全部載入完畢後顯示所有內容
</script>