gpt4 book ai didi

html - 无法在 Windows Phone 模拟器上获取整页背景图像

转载 作者:太空宇宙 更新时间:2023-11-04 15:23:29 26 4
gpt4 key购买 nike

背景:我正在尝试为 Windows Phone 7 修改我现有的 Web 应用程序。我的开发环境是 Microsoft Visual Studio 2010 premium,并且我已经安装了 Windows Phone SDK 7.1。我的 Web 应用程序仅包含 HTML 和 CSS。模拟器上的 Web 浏览器是 Internet Explorer Mobile 9。

问题:我无法让我的网页全屏显示(宽度没问题,但我的网页高度只有显示区域的 80% 左右 剩下的 20% 显示为纯白色。

例如,我尝试为我的页面获取背景图像并将其显示为整页。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Cache-control" content="no-cache" />
<title>index</title>
<link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 500px)" href="mobile.css" />
</head>

<body>
<img src="background2.jpg" id="bbg" alt=""/>
</body>

</html>

以下是 mobile.css:

#bbg {
position:fixed;
top:0;
left:0;

/* Preserve aspet ratio */
min-width:100%;
min-height:100%;
}

Sample output

我该如何纠正这个问题?有什么想法吗??

编辑(解决方案)
正如 Fabian 在接受的答案中提到的,这是我必须添加到我的标记中的内容:

<meta name="Viewport" content= "height= device-height; user-scaleable=no; initial-scale=1.0" />

最佳答案

尝试设置您的 meta viewport正确标记。这些控制页面在浏览器窗口中的缩放比例。

如果这仍然没有帮助,请尝试将背景图片设置为设备分辨率 (800x480px),看看是否有帮助。

关于html - 无法在 Windows Phone 模拟器上获取整页背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14313355/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com