我使用html和javascript for blackberry 10 os.when我在appworld中提交时,我得到了以下错误 请修复以下问题,然后将您的应用程序重新提交为新版本。
我正在BlackBerry Dev Alpha Device(操作系统版本10.0.9.1103)上测试您的应用程序。启动应用程序后,它在设备上无法正常显示,因为它在纵向模式下启动,并且在屏幕上看起来很小(顶部屏幕上为30%)。请修正缩放问题。
答案 0 :(得分:1)
这是目前设置初始缩放的推荐方法,将其包含在index.html
中<!-- new way of setting the meta tag -->
<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>