简体   繁体   English

HTML5 Javascript移动应用程序不适用于较小分辨率的平板电脑

[英]HTML5 Javascript Mobile App not fitting on smaller resolution tablets

I am using the Kendo UI Mobile framework and I have min-width attribute set to 768px. 我正在使用Kendo UI Mobile框架,并且我将min-width属性设置为768px。 When I pull the page up on a tablet with a smaller resolution, it causes a horizontal scroll. 当我在分辨率较低的平板电脑上向上拉动页面时,会导致水平滚动。 I just want the page to auto zoom out if the resolution is smaller than the set width. 如果分辨率小于设置的宽度,我只希望页面自动缩小。 In the past I have used this meta tag to fix this: <meta name="viewport" content="width=device-width, height=device-height, user-scalable=no" /> 过去,我使用此元标记来解决此问题: <meta name="viewport" content="width=device-width, height=device-height, user-scalable=no" />

But this is not working. 但这是行不通的。

Any help on how I can have the page auto zoom to fit the devices width would be great 关于如何使页面自动缩放以适合设备宽度的任何帮助都将非常有用

You could also try getting rid of the "minimum width" CSS attribute and just using "width:100%" which would make it fit to any browser size. 您也可以尝试摆脱“最小宽度” CSS属性,而仅使用“ width:100%”,使其适合任何浏览器尺寸。 There is also some speculation about using ems instead of px for width since there are so many different mobile devices and browsers it's basically impossible to plan for every contingency. 对于使用ems而不是px的宽度,也有一些猜测,因为有太多不同的移动设备和浏览器,因此基本上不可能针对每种意外情况进行计划。 Unfortunately I can't find the link to the article about using em, but basically if you take away some of those hard lower boundaries you might find it's easier to support a bigger variety of devices. 不幸的是,我找不到有关使用em的文章的链接,但是基本上,如果您取消了一些严格的下限限制,则可能会发现支持更多种设备更容易。

Also checkout bootstrap . 还可以检出引导程序 It's a pretty good responsive design package. 这是一个非常好的响应式设计包。

Try this for example. 尝试这个例如。

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,    minimum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM