我正在使用EaselJS在畫布中創建動畫背景。我很奇怪,爲什麼我的精靈正在爲很快就爬上我把我的畫布窗口的大小... 的圖像正在尋找streched ...爲什麼easelJS縮放我的精靈?
$(「身體」)。追加(」 「); $('#backgroundCanvas')。height($(window).height()); $('#backgroundCanvas')。width($(window).width());
var sprite = new createjs.SpriteSheet({
"animations":
{
"run": [0, 6, "run", frequency]},
"images": [url],
"frames":
{
"height": height,
"width":width,
"regX": 0,
"regY": 0,
"count": count
}
});
var item = new createjs.BitmapAnimation(sprite);
item.height = height;
item.width = width;
//item.scale = item.scaleY = item.scaleX= 0.5;
item.x = positionX;
item.y = positionY;
item.dirX = 1;
item.dirY = 1;
item.vX = 4;
item.vY = 4;
item.gotoAndPlay("run");
stage.addChild(item);
你可以發佈你的代碼或鏈接到你的問題? – olsn 2013-03-22 18:43:08
您的原始帆布尺寸是否與窗戶成比例? – markE 2013-03-22 21:18:25