如何隐藏整个网站?

时间:2014-06-20 12:55:25

标签: html css html5 css3

如何隐藏整个内容,例如黑色或图像,但是当页面加载时,我看不到任何内容,只看到那种颜色。

3 个答案:

答案 0 :(得分:5)

您可以设置html标签的背景颜色并隐藏正文标记。

html {
    background-color: blue;
}

body {
    display: none;
}

答案 1 :(得分:-1)

<body>代码后面添加以下代码:

<div class="overlay"></div>

并声明以下风格:

.overlay{
   height: 100%;
   width: 100%;
   background: #000;
   z-index: 999;
   position: absolute;
   top: 0;
   left: 0;
}

干杯。

答案 2 :(得分:-1)

你可以像下面这样做

将css应用于正文

body {
    display:none;
}

然后添加jQuery

$(window).load(function() {
    $("body").fadeIn("slow");
});