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.

I am using KineticJs to create shapes with some text label(draggable along with the shape). There wasn't any info on the tutorial. Neither did I find this a very clean approach. What's a good approach to do so? The code below only creates the shape.

HTML:

<html>
    <body>
        <div id="container"> </div>
        <button id="new_state">New State</button>
    </body>
</html>

JS:

$(document).bind("ready", function () {
    stage = new Kinetic.Stage({
        container: 'container',
        width: 600,
        height: 500
    });

    layer = new Kinetic.Layer();

    $('#new_state').click(function() {
        newState();
    });

});

newState = function() {
    var circle = new Kinetic.Circle({
        x: stage.getWidth()/2,
        y: stage.getHeight()/2,
        radius: 20,
        fill: 'white',
        stroke: 'black',
        strokeWidth: 2,
        text: 'tet',
        draggable: true
    });
    circle.on('mouseover', function() {
        $('body').css('cursor', 'pointer');
    });

    circle.on('mouseout', function() {
        $('body').css('cursor', 'default');
    });


    layer.add(circle);
    stage.add(layer);
};

JsFiddle here

share|improve this question

1 Answer

up vote 3 down vote accepted

You just need to add both the circle and text to a group and make the group draggable. When grouped, the objects act as one item.

var group = new Kinetic.Group({
    draggable: true
});
group.add(circle);
group.add(text);

then add the group to the layer

 layer.add(group);

http://jsfiddle.net/e8KwC/1/

share|improve this answer
Is that the only way? – ajmartin Jan 4 at 3:06
1  
That's pretty much the only way to go. It's the cleanest at least. If you think about what you're trying to do: Create a shape, then a text, then treat them as one, then attach events to them. There is no one step process for that, so you have to use groups... or code your own class which extends Kinetic.Shape or Text so you can do shape and text in one fell swoop. – EliteOctagon Jan 4 at 14:29

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.