如何修复网络中的屏幕大小为BB 10应用程序工作

How to fix screen size in web works for BB 10 app

本文关键字:BB 小为 应用程序 工作 屏幕 何修复 网络      更新时间:2023-09-26

我使用以下代码将屏幕大小固定为bb10设备的高度和宽度,但问题是当我在bb10设备上向上滚动应用程序时,它会将整个应用程序向上滚动,当我向下滚动时,它将整个应用程序向下滚动。请帮我怎么修。

<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">

要设置视口,您应该使用这种较新的方法。你做这件事的方式过去是有效的,但现在是推荐的方式:

<!-- set viewport -->
<script>
  var meta = document.createElement("meta");
  meta.setAttribute('name','viewport');
  meta.setAttribute('content','initial-scale='+ (1/window.devicePixelRatio) + ',user-scalable=no');
  document.getElementsByTagName('head')[0].appendChild(meta);
</script>