User:Cleonis/sandbox/setInterval

From JSXGraph Wiki


    


The JavaScript code

var board = JXG.JSXGraph.initBoard(
  'jxgbox',
  {boundingbox:[-1.5,1.5,1.5,-1.5], keepaspectratio:true, axis:true}
);

var isPlaying = false;
var starttime = 0;
var timeElapsed = 0;
var interval;

var p = board.create(
  'point',
  [function() {return Math.cos(timeElapsed)}, function() {return Math.sin(timeElapsed)}]
);

function playing() {
  timeElapsed = (Date.now() - starttime)/1000;
  board.update();
}

function play() {
  if (!isPlaying) {
    starttime = Date.now();
    isPlaying = true;
    interval = setInterval(playing,50);
  }
}

function resetAnimation() {
  clearInterval(interval);
  timeElapsed = 0;
  isPlaying = false;
  board.update();
}

The HTML

<button id="playbutton" onclick="play()">play</button><button id="resetanimation" onclick="resetAnimation()">reset</button>