作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在分析这段代码(JavaScript 新手),它是一个简单的 flappy 小鸟游戏的一部分,但无法弄清楚这个函数 this.x = width
指的是什么。 宽度
到底是什么意思。
一些背景
function Pipe() {
this.spacing = 175;
this.top = random(height / 6, 3 / 4 * height);
this.bottom = height - (this.top + this.spacing);
this.x = width;
this.w = 80;
this.speed = 4 ;
this.highlight = false;
this.hits = function(bird) {
if (bird.y < this.top || bird.y > height - this.bottom) {
if (bird.x > this.x && bird.x < this.x + this.w) {
this.highlight = true;
return true;
}
}
this.highlight = false;
return false;
}
this.show = function() {
fill(255);
if (this.highlight) {
fill(255, 0, 0);
}
rect(this.x, 0, this.w, this.top);
rect(this.x, height-this.bottom, this.w, this.bottom);
}
this.update = function() {
this.x -= this.speed;
}
this.offscreen = function() {
if (this.x < -this.w) {
return true;
} else {
return false;
}
}
}
如果有人能帮助我解决这个问题,我将非常感激。
最佳答案
在本例中,width
引用的变量必须在 Pipe()
函数外部定义。 高度
也是如此。
关于javascript - 这个特定的函数指的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53269523/
我是一名优秀的程序员,十分优秀!