function calculateRatio()

in js/viewport.js [16:18]


function calculateRatio(scroll, scrollMax) {
  return scrollMax > 0 ? Math.min(Math.max(scroll / scrollMax, 0), 1) : 0;
}