[]ios下没有办法强制全屏,横屏,地址栏仍然存在
使用laya创建的空白程序,增加如下代码
//初始化引擎
Laya.init(1334, 750);
Laya.stage.screenMode = Stage.SCREEN_HORIZONTAL;
Laya.stage.alignH = Stage.ALIGN_CENTER;
Laya.stage.alignV = Stage.ALIGN_MIDDLE;
Laya.stage.bgColor = "#C0C0C0";
index.html和myLaya.max.html里增加如下:
<meta name='full-screen' content='true' />
<meta name='screen-orientation' content='landscape' />
<meta name='x5-fullscreen' content='true' />
<meta name='x5-orientation' content='landscape' />
<meta name="browsermode" content="application">
<meta name="x5-page-mode" content="app">
<meta name="msapplication-tap-highlight" content="no">
【在手机的QQ浏览器和UC浏览器上上使用域名地址直接访问】
在安卓上可以隐藏标题栏,全屏,横屏,
在苹果手机里标题栏没有隐藏。
安卓手机不需要增加以下即可,IOS不论有没有都不行
<meta name="browsermode" content="application">
<meta name="x5-page-mode" content="app">
//初始化引擎
Laya.init(1334, 750);
Laya.stage.screenMode = Stage.SCREEN_HORIZONTAL;
Laya.stage.alignH = Stage.ALIGN_CENTER;
Laya.stage.alignV = Stage.ALIGN_MIDDLE;
Laya.stage.bgColor = "#C0C0C0";
index.html和myLaya.max.html里增加如下:
<meta name='full-screen' content='true' />
<meta name='screen-orientation' content='landscape' />
<meta name='x5-fullscreen' content='true' />
<meta name='x5-orientation' content='landscape' />
<meta name="browsermode" content="application">
<meta name="x5-page-mode" content="app">
<meta name="msapplication-tap-highlight" content="no">
【在手机的QQ浏览器和UC浏览器上上使用域名地址直接访问】
在安卓上可以隐藏标题栏,全屏,横屏,
在苹果手机里标题栏没有隐藏。
安卓手机不需要增加以下即可,IOS不论有没有都不行
<meta name="browsermode" content="application">
<meta name="x5-page-mode" content="app">
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
huohuohuo
赞同来自:
cuixueying
赞同来自:
注意:并不是所有的浏览器都可以隐藏地址栏的,这个是浏览器方的限制,引擎方无法强制隐藏!