赞 | 9 |
VIP | 0 |
好人卡 | 0 |
积分 | 42 |
经验 | 0 |
最后登录 | 2024-11-22 |
在线时间 | 503 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 4174
- 在线时间
- 503 小时
- 注册时间
- 2011-3-26
- 帖子
- 110
|
本帖最后由 rfvtgbzxc 于 2023-10-23 10:57 编辑
如果是上下有黑边,可以试下下面的方法:
新建一个js,当作插件执行:
- Graphics._stretchHeight = function() {
- if (Utils.isMobileDevice()) {
- // [Note] Mobile browsers often have special operations at the top and
- // bottom of the screen.
- // const rate = Utils.isLocal() ? 1.0 : 0.9;
- const rate = 1.0;
- return document.documentElement.clientHeight * rate;
- } else {
- return window.innerHeight;
- }
- };
复制代码
这个“bug”实际上是MZ对在手机端或者浏览器端做的一些适配,避免一些状态栏的遮挡情况,后来因为app支持全屏而不太适用了。
如果是左右两侧或者本地exe也有黑边的话,应该是其他问题。 |
|