<html lang="en">
<head>
<meta charset="utf-8">
<title>EaselJS: Curve To Demo</title>
<script src="https://code.createjs.com/easeljs-0.8.1.min.js"></script>
<script id="editable">
var canvas, stage;
var marker;
var oldPt;
var oldMidPt;
var title;
var color;
var stroke;
var colors;
var index;
function init() {
canvas = document.getElementById("myCanvas");
index = 0;
stage = new createjs.Stage(canvas);
stage.autoClear = true;
stage.enableDOMEvents(true);
createjs.Touch.enable(stage);
createjs.Ticker.setFPS(24);
stage.addEventListener("stagemousedown", handleMouseDown);
stage.addEventListener("stagemouseup", handleMouseUp);
stage.update();
}
function handleMouseDown(event) {
if (!event.primary) { return; }
marker = new createjs.Shape();
marker.stroke = marker.graphics.beginStroke('yellow').command;
stroke = Math.random() * 30 + 10 | 0;
oldPt = new createjs.Point(stage.mouseX, stage.mouseY);
oldMidPt = oldPt.clone();
stage.addChild(marker);
stage.addEventListener("stagemousemove", handleMouseMove);
}
function handleMouseMove(event) {
if (!event.primary) { return; }
var midPt = new createjs.Point(oldPt.x + stage.mouseX >> 1, oldPt.y + stage.mouseY >> 1);
marker.graphics.setStrokeStyle(stroke, 'round', 'round').moveTo(midPt.x, midPt.y).curveTo(oldPt.x, oldPt.y, oldMidPt.x, oldMidPt.y);
oldPt.x = stage.mouseX;
oldPt.y = stage.mouseY;
oldMidPt.x = midPt.x;
oldMidPt.y = midPt.y;
stage.update();
}
function handleMouseUp(event) {
if (!event.primary) { return; }
stage.removeEventListener("stagemousemove", handleMouseMove);
//CLONE A NEW MARKER AND CHANGE COLOR
var clonedMarker = marker.clone(true);
clonedMarker.stroke = marker.stroke;
clonedMarker.stroke.style = 'blue';
//MOVING ORIGINAL MARKER FOR REFERENCE
marker.x -= 50;
marker.y -= 50;
stage.addChild(clonedMarker);
stage.update();
}
</script>
</head>
<body onload="init();">
<canvas id="myCanvas" width="500" height="500"></canvas>
</body>
</html>
Output
This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account
Dismiss xKeyboard 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. |