私は4つの壁からボールをバウンスするjavascriptファイルを使って作業しています。私はそのため私は実行取得されていない場合javascriptのボールがhtmlキャンバスでバウンス
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
var ballRadius = 10;
var x = canvas.width/2;
var y = canvas.height-30;
var dx = 2;
var dy = -2;
if(dx>0){
alert("dx is greater than 0");
}
if(dx<0){
alert("dx is less than 0");
}
function drawBall() {
ctx.beginPath();
ctx.arc(x, y, ballRadius, 0, Math.PI*2);
ctx.fillStyle = "#0095DD";
ctx.fill();
ctx.closePath();
}
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
drawBall();
if(x + dx > canvas.width-ballRadius || x + dx < ballRadius) {
dx = -dx;
}
if(y + dy > canvas.height-ballRadius || y + dy < ballRadius) {
dy = -dy;
}
x += dx;
y += dy;
}
setInterval(draw, 10);
あなたは確かに 'else'を使用することはできません – adeneo
私は他にしようとしました...しかし動作していません –