【发布时间】:2016-12-18 22:27:09
【问题描述】:
我如何计算我使用的图像的长度/宽度。 我需要在第二个drawImage中指定它以在图像结束时重复图像。
function Background() {
this.speed = 2; // Redefine speed of the background for panning
// Implement abstract function
this.draw = function () {
// Pan background
// this.x -= this.speed;
this.context.drawImage(imageRepository.background, this.x, this.y);
this.x -= this.speed;
// Draw another image at the top edge of the first image
this.context.drawImage(imageRepository.background, this.x, this.y);
// // If the image scrolled off the screen, reset
// if (this.x <= -this.background.naturalWidth) this.x = 0;
};
}
【问题讨论】:
-
当然,这方面的研究似乎并不多
标签: javascript