作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
所以我使用phaser.io但我想打印一个数组,所以我在我的页面 html 中创建它。
要放置数组的高度和宽度,我需要知道 Canvas 的高度和宽度。
所以我应该这样做:
$('canvas').height();
任务完成。
但没有陷阱我的 Canvas 看起来像这样:
<canvas width="1261" height="1101" style="display: block; touch-action: none; user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); width: 1059px; height: 925px; cursor: inherit; margin-left: 1px; margin-right: 0px; margin-top: 0px;"></canvas>
每次它返回给我的高度值而不是样式值。
所以我尝试其他方式:
$('canvas').css('height');
$('canvas').[0].style.height;
$('canvas')[0].style.cssText;
但我总是得到错误的结果
最奇怪的是,当我这样做的时候:
console.log($('canvas')[0].style)
我在元素“height”和“cssText”中看到了我想要的结果。我把部分结果放在这里:
0:"display"
1:"touch-action"
2:"user-select"
3:"-webkit-tap-highlight-color"
4:"width"
5:"height"
6:"margin-left"
7:"margin-right"
8:"margin-top"
...
cssText:"display: block; touch-action: none; user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); width: 1059px; height: 925px; margin-left: 1px; margin-right: 0px; margin-top: 0px;"
...
height:"925px"
...
谁能告诉我为什么?给我一个解决方案也很好。
======= 编辑 =======
当我点击一个元素执行 $('canvas').height() 时,我得到了一些消息。实际上我可以处理它,但我仍然不明白为什么当我这样做时:
console.log($('canvas')[0].style.cssText);
console.log($('canvas').height());
只是一个接一个我得到不同的结果。当然是加载时间的问题......但对我来说仍然不太好。
window.onload = function() {
var Level = {
preload: function()
{
console.log("toto");
},
create: function()
{
console.log($('canvas').height());
console.log($('canvas')[0].style.cssText);
this.scale.pageAlignHorizontally = true;
this.scale.pageAlignVertically = true;
this.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL;
this.scale.refresh();
}
}
const SAFE_ZONE_WIDTH=640;
const SAFE_ZONE_HEIGHT=1101;
var w = window.innerWidth ;
var h = window.innerHeight ;
var aspectRatioDevice = w/h;
var aspectRatioSafeZone = SAFE_ZONE_WIDTH / SAFE_ZONE_HEIGHT;
var extraWidth = 0, extraHeight = 0, offsetWidth = 0;
if (aspectRatioSafeZone < aspectRatioDevice)
{
// have to add game pixels horizontally in order to fill the device screen
extraWidth = aspectRatioDevice * SAFE_ZONE_HEIGHT - SAFE_ZONE_WIDTH;
offsetWidth = extraWidth/2;
}
else
{
// have to add game pixels vertically
extraHeight = SAFE_ZONE_WIDTH / aspectRatioDevice - SAFE_ZONE_HEIGHT;
}
var game = new Phaser.Game( SAFE_ZONE_WIDTH + extraWidth, SAFE_ZONE_HEIGHT + extraHeight, Phaser.CANVAS, 'game_div');
game.state.add('Level', Level);
game.state.start('Level');
}
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, height = device-height, user-scalable=no, target-densitydpi = device-dpi" />
<title>niuniu</title>
<script>
screen.orientation.lock('portrait');
</script>
<script src="https://github.com/photonstorm/phaser-ce/releases/download/v2.9.4/phaser.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
</body>
</html>
最佳答案
在 Phaser (v3) 中,您可以访问 game.canvas
,这是运行 Phaser 的 Canvas (元素),因此:
const game = new Phaser.Game({ ... });
console.log(game.canvas.width, game.canvas.height);
关于javascript - 从相位器 Canvas 获取高度和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48224919/
下面是比较 fft 相位图与 2 种不同方法的代码: import numpy as np import matplotlib.pyplot as plt import scipy.fftpack p
我使用 apache commons 数学库来转换我的音频样本缓冲区上的 FFt 和 IFFT。 FFT 的输出给了我一组复数。频率在中间镜像。样本缓冲区大小为 4096 个样本,我得到 2048 个
我是一名优秀的程序员,十分优秀!