PhoneGap Windows Phone间隙底部 [英] Phonegap Windows Phone gap space bottom

查看:159
本文介绍了PhoneGap Windows Phone间隙底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用phonegap开发,我的风格有问题。

I developp with phonegap and I have got a problem with the style.

我只想在底部放置一个页脚。

I just want to place a footer at the bottom.

这是我的index.html

Here is my index.html

<!DOCTYPE html>    
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="format-detection" content="telephone=no" />
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
    <link rel="stylesheet" type="text/css" href="css/index.css" />
    <title>Hello World</title>
    <script type="text/javascript" src="cordova-2.6.0.js"></script>
    <script type="text/javascript" src="js/index.js"></script>
</head>
<body id="page">        
    <div id="bottom">
        <p>Bonjour</p>
    </div>
</body>
</html>

这是我的css

#bottom {
position:fixed;
width: 100%;
bottom: 0px;
background-color: #f00;
}
body {
min-height: 533px;
height : 100%;
padding: 0;
margin: 0;
}

我有这个

手机上的结果

如何我可以解决这个问题,还是任何人遇到同样的问题?

How can I solve this, or anyone meet the same problem?

谢谢!

推荐答案

首先,是为了位置固定在IE上不工作。

First thing, is that to position fixed does not work on IE.

为了解决这个问题,我添加包含jquery在我的项目,绝对

To fix this, I add to include jquery on my project and change the position to absolute

#bottom {
position:absolute;
width: 100%;
bottom: 0px;
background-color: #f00;        
margin: 0px;
padding: 0px;
left: 0px;
}

和我的index.html

and my index.html

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="format-detection" content="telephone=no" />
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />

    <link rel="stylesheet" type="text/css" href="css/index.css" />

    <title>Hello World</title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.css">
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>

    <script type="text/javascript" src="cordova-2.6.0.js"></script>

    <script type="text/javascript" src="js/index.js"></script>

</head>
<body>  
    <div id="bottom">
        <p>Bonjour</p>
    </div>
</body>
</html>

现在工作

这篇关于PhoneGap Windows Phone间隙底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆