html – 移动设备放大Google Apps脚本

html – 移动设备放大Google Apps脚本,第1张

概述我在GAS上制作了一个400像素宽的网络应用程序.我希望在加载时缩放以填充移动设备的屏幕,而不是仅填充屏幕的一半(尽管仍使用固定的像素宽度). 我尝试过使用下面的视口代码而没有运气. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" 我在GAS上制作了一个400像素宽的网络应用程序.我希望在加载时缩放以填充移动设备的屏幕,而不是仅填充屏幕的一半(尽管仍使用固定的像素宽度).

我尝试过使用下面的视口代码而没有运气.

<Meta name="vIEwport" content="wIDth=device-wIDth,initial-scale=1.0,maximum-scale=2.0,user-scalable=yes" />
解决方法 Google最近几个月发布了这个问题并添加了功能,使用.addMetaTag()方法.

例:

<Meta name="Google-site-verification" content="..."/><Meta name="vIEwport" content="..."/>var output = HTMLService.createHTMLOutput('<b>Hello,world!</b>');output.addMetaTag('vIEwport','wIDth=device-wIDth,initial-scale=1');

有关该方法的文档
https://developers.google.com/apps-script/reference/html/html-output#addmetatagname-content

相关论坛
https://code.google.com/p/google-apps-script-issues/issues/detail?id=4659

总结

以上是内存溢出为你收集整理的html – 移动设备放大Google Apps脚本全部内容,希望文章能够帮你解决html – 移动设备放大Google Apps脚本所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1073957.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存