Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

check out: http://jsfiddle.net/aqaP7/4/,

and

http://shedlimited.debrucellc.com/test3/canvaskinclip.html,

I want to make html5 images resizable, and it needs to be based on the html5 etc because my clipping region is in html5

I think that it will have to do with the mousedown events, but how for example can I tell if the mouse is on the corner of the shape? Can I just add the code to my circle - mousedown function?

 circle.on("mousedown", function(){
            draggingShape = this;
            var mousePos = stage.getMousePosition();
            draggingRectOffsetX = mousePos.x - circle._x;
            draggingRectOffsetY = mousePos.y - circle._y;
        });
        circle.on("mouseover", function(){
            document.body.style.cursor = "pointer";
        });
        circle.on("mouseout", function(){
            document.body.style.cursor = "default";
        });

        layer.add(circle);

        stage.on("mouseout", function(){
            draggingShape = undefined;
        }, false);

        stage.on("mousemove", function(){
            var mousePos = stage.getMousePosition();
            if (draggingShape) {
                draggingShape._x = mousePos.x - draggingRectOffsetX;
                draggingShape._y = mousePos.y - draggingRectOffsetY;

                layer.draw();
            }
share|improve this question

1 Answer

up vote 0 down vote accepted

Take a look at this canvas tutorial:

 http://www.html5canvastutorials.com/labs/html5-canvas-modify-curves-with-anchor-points-using-kineticjs/

Here is some simple code to get you started:

var anchor;

function addAnchor(group, x, y, name) {
  var stage = group.getStage();
  var layer = group.getLayer();

anchor = new Kinetic.Circle({
  x: x,
  y: y,
  stroke: "#666",
  fill: "#ddd",
  strokeWidth: 2,
  radius: 8,
  name: name,
  draggable: true
        });                   


anchor.on("dragmove", function() {
  update(group, this);
  layer.draw();
});
anchor.on("mousedown touchstart", function() {
  group.setDraggable(false);
  this.moveToTop();
});
anchor.on("dragend", function() {
  group.setDraggable(true);
  layer.draw();
});
// add hover styling
anchor.on("mouseover", function() {
  var layer = this.getLayer();
  document.body.style.cursor = "pointer";
  this.setStrokeWidth(4);
  layer.draw();
});
anchor.on("mouseout", function() {
  var layer = this.getLayer();
  document.body.style.cursor = "default";
  this.setStrokeWidth(2);
  layer.draw();
});

group.add(anchor);


}

essentially, you want to add anchors to a shape on click, then use those anchors for resizing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.