Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create the same "pull to refresh" effect than in iOS6 Mail for a game based on the framework KineticJS.

At the moment I created Two circle : One fixed and another at the top of the first. Two line at the border of the circles to draw the distance.

I imagine that the better idea should be to create quadratic line between the two circle but my Math skills are near the absolut zero ...

$(function(){

var stage = new Kinetic.Stage({
      container: 'container',
      width: 600,
      height: 600
    });

    var layer = new Kinetic.Layer();

    var circle = new Kinetic.Circle({
        x: 300,
        y: 300,
        radius: 70,
        fill: 'red'
    });

    var zone = new Kinetic.Circle({
        x: 300,
        y: 300,
        radius:70,
        fill: 'transparent',
        stroke: 'black',
        strokeWidth: 4,
        draggable: true
    });

    var upperLine = new Kinetic.Line({
        points:[300,230],
        stroke:'black',
        strokeWidth: 4
    });

    var lowerLine = new Kinetic.Line({
        points:[300,370],
        stroke:'black',
        strokeWidth: 4
    });

    // add the shape to the layer
    layer.add(circle);
    layer.add(zone);
    layer.add(upperLine);
    layer.add(lowerLine);

    // add the layer to the stage
    stage.add(layer);

    // animation
    var anim = new Kinetic.Animation({

        func: function(frame){

            upperLine.setPoints([300,230,zone.getPosition().x,zone.getPosition().y-70]);
            lowerLine.setPoints([300,370,zone.getPosition().x,zone.getPosition().y+70]);
        },

        node:layer

    });

    anim.start();

You can see example here : http://gregoire-lagoutte.com/stretching/test.html

share|improve this question

closed as not a real question by Will May 9 at 20:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.