function moveLabel(timestamp, label, start, current, end, cb) {
  if (start === end) return null;
  if (!startTimestamp) startTimestamp = timestamp;
  let progress = 1 - (timestamp - startTimestamp) / duration;
  if (progress < 0) progress = 0;