gpt4 book ai didi

ios - 使用 ios 浏览器在 iframe 中重定向会卡住 Phaser Canvas

转载 作者:行者123 更新时间:2023-11-29 12:45:43 24 4
gpt4 key购买 nike

我使用 Phaser 来创建游戏,但我发现在 facebook 等应用中出现问题。当在 iframe 中完成重定向时, Canvas 在点击后没有响应。

例子:我有一个 IFrame,在 iframe 中我重定向到 game.html。当我点击 game.html 时,一切都卡住了。

在电脑(任何浏览器)、windows phone 或 android 上一切正常,但在 iphone 或 ipad 上就不行。

下面是重现问题的示例文件...

index.html:

<html>
<body>
<iframe src="click.html" height="900" width="800"/>
</body>
</html>
click.html
<!DOCTYPE html>
<html>

<body>

<a href="Game.html">CLICK HERE</a>

</body>
</html>

游戏.html

<!DOCTYPE html>
<html>
<head>
<style>
body{overflow:hidden;}
#game_div {
width: 760px;
height: 1100px;
margin: auto;
}
</style>
<script type="text/javascript" src="./Game/phaser.min.js"></script>
<script type="text/javascript" src="./Game/main.js"></script>
</head>

<body>

<div id="game_div"> </div>

</body>
</html>

主要.js

var game = new Phaser.Game(760, 1100, Phaser.AUTO, 'game_div');
var overlay, countdownText;
var counter = 0;

var main_state = {
preload: function() {

},
create: function () {

//game overlay
overlay = game.add.graphics(0, 0);
overlay.beginFill(0x00A54F, 0.8);
overlay.drawRect(0, 0, game.width, game.height);

countdownText = game.add.text((game.width / 2), (game.height / 2), counter, { font: "65px Arial", fill: "#ffffff", align: "center" });
countdownText.anchor.set(0.5,0.5);

},
update: function() {
countdownText.setText(counter++);
}
}

game.state.add('main', main_state);
game.state.start('main');

腾讯

最佳答案

找到解决方案,感谢 Rich Davey。

当我添加以下代码时,它起作用了:

game.stage.disableVisibilityChange = true;

关于ios - 使用 ios 浏览器在 iframe 中重定向会卡住 Phaser Canvas ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23737751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com