HTML5应用程序应该打开网站。我如何设置背景颜色?

时间:2013-12-26 22:19:24

标签: html html5

我写了一个非常简单的HTML应用程序。该应用程序打开一个小的加载动画并重定向到一个网站。我在我的Windows手机上测试了这个。背景颜色应为黑色。它在开始时是黑色的,但是当我点击某些内容并且IE加载页面时,背景是白色的...... 如何设置IE加载的背景颜色?

我的Html应用代码:

    <!DOCTYPE HTML>
<html>
    <head>
        <title>Die Witze App</title>
        <meta http-equiv="refresh" content="1; url=http://witze.reddoit.de/" /> 
        <link href="stylesheet.css" type="text/css" rel="stylesheet">
        <meta name="viewport" content="width=device-width, intial-scale=1.0, maximum-scale=1.0, user-scalable=0">
    </head>

    <body style="background-color:black">
    <!--<p id="ladetext">Die Witze App<p>-->

    <div class=ladeanimation>
        <div class="windows8">
        <div class="wBall" id="wBall_1">
        <div class="wInnerBall">
        </div>
        </div>
        <div class="wBall" id="wBall_2">
        <div class="wInnerBall">
        </div>
        </div>
        <div class="wBall" id="wBall_3">
        <div class="wInnerBall">
        </div>
        </div>
        <div class="wBall" id="wBall_4">
        <div class="wInnerBall">
        </div>
        </div>
        <div class="wBall" id="wBall_5">
        <div class="wInnerBall">
        </div>
        </div>
        </div>

    </div>




    </body>


</html>

1 个答案:

答案 0 :(得分:0)

查看CSS文件,确保在任何类或ID选择器中没有任何背景属性。

如果您没有,请尝试将background-color: #000000;添加到ladeanimation类。