我应该如何使用 createJs 创建响应式 canvas 以适应不同的移动设备屏幕?

How should I create a responsive canvas with createJs to adapt different mobile device's screens?

我想开发一款html5手机游戏。如您所知,移动设备的屏幕大小不同,所以我想创建一个响应式 canvas 以便它可以适应不同的屏幕。

最简单的方法是根据视口将 canvas 的大小调整为 JavaScript,然后重排内容。

var w = $("#container").width();
var h = $("#container").height();

stage.canvas.width = w;
stage.canvas.height = h;

// Simple "fit-to-screen" scaling
var ratio = contentWidth / contentHeight; // Use the "default" size of the content you have.
var windowRatio = w/h;
var scale = w/contentWidth;
if (windowRatio > ratio) {
    scale = h/contentHeight;
}
content.scaleX = content.scaleY = scale;

这是一个简单的例子。它与示例代码有点不同,使其在调整大小 window 中工作。 http://jsfiddle.net/lannymcnie/4yy08pax/

如果您使用的是移动设备,还需要考虑一些其他事项(它们会自动缩放 canvases 以说明其高 DPI)。

希望对您有所帮助。