<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body onload="init();">
<canvas id="myCanvas" width="400" height="400">
</canvas>
</body>
</html>
var canvas, ctx, width, height;
// array of balls to animate
var ballArray = [];
function init() {
canvas = document.querySelector("#myCanvas");
ctx = canvas.getContext('2d');
width = canvas.width;
height = canvas.height;
// try to change this number
createBalls(10);
requestAnimationFrame(mainLoop);
}
function createBalls(numberOfBalls) {
for(var i=0; i < numberOfBalls; i++) {
// Create a ball with random position and speed.
// You can change the radius
var ball = new Ball(width*Math.random(),
height*Math.random(),
(10*Math.random())-5,
(10*Math.random())-5,
30);
// add the ball to the array
ballArray[i] = ball;
}
}
function mainLoop() {
// clear the canvas
ctx.clearRect(0, 0, width, height);
// for each ball in the array
for(var i=0; i < ballArray.length; i++) {
var ball = ballArray[i];
// 1) move the ball
ball.move();
// 2) test if the ball collides with a wall
testCollisionWithWalls(ball);
// 3) draw the ball
ball.draw();
}
// ask for a new frame of animation at 60f/s
window.requestAnimationFrame(mainLoop);
}
function testCollisionWithWalls(ball) {
// left
if (ball.x < ball.radius) { // x and y of the ball are at the center of the circle
ball.x = ball.radius; // if collision, we replace the ball at a position
ball.vx *= -1; // where it's exactly in contact with the left border
} // and we reverse the horizontal speed
// right
if (ball.x > width - (ball.radius)) {
ball.x = width - (ball.radius);
ball.vx *= -1;
}
// up
if (ball.y < ball.radius) {
ball.y = ball.radius;
ball.vy *= -1;
}
// down
if (ball.y > height - (ball.radius)) {
ball.y = height - (ball.radius);
ball.vy *= -1;
}
}
// Constructor function for balls
function Ball(x, y, vx, vy, diameter) {
// property of each ball: a x and y position, speeds, radius
this.x = x;
this.y = y;
this.vx = vx;
this.vy = vy;
this.radius = diameter/2;
// methods
this.draw = function() {
ctx.beginPath();
ctx.arc(this.x, this.y, this.radius, 0, 2*Math.PI);
ctx.fill();
};
this.move = function() {
// add horizontal increment to the x pos
// add vertical increment to the y pos
this.x += this.vx;
this.y += this.vy;
};
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |