我需要帮助。没有人结束这个问题!!!!抱歉:)

问题描述 投票:0回答:1

这是我的项目代码。嘴巴只张不闭。这里有什么问题吗?为什么不起作用?

var mouth1 = 221;

draw = function() {
background(255, 171, 171);

fill(0, 0, 0);
ellipse(105, 130, 47, 47);

fill(0, 0, 0);
ellipse(281, 130, 47, 47);

fill(255, 255, 255);
ellipse(115, 122, 12, 12);
ellipse(290, 122, 12, 12);
ellipse(104, 133, 9, 9);
ellipse(282, 133, 9, 9);

fill(0, 0, 0);
ellipse(199, 258, 123, mouth1);


mouth1 -= 2;

fill(255, 0, 0);
text("Click restart after 3 seconds.", 138, 33, 146, 85);
println(mouth1);

if (mouth1 <= 36) {
mouth1 += 2;
}
if (mouth1 >= -195) {
mouth1 -= 2;
}

};

我预计嘴巴会张开并关闭。但唯一发生的事情就是嘴巴张开了。怎么了?

javascript helper
1个回答
0
投票

XD 有人可以帮我吗?并使解释易于理解。谢谢!

© www.soinside.com 2019 - 2024. All rights reserved.