Skip to content

Instantly share code, notes, and snippets.

@sbosell
Created October 10, 2013 19:15
Show Gist options
  • Save sbosell/6923888 to your computer and use it in GitHub Desktop.
Save sbosell/6923888 to your computer and use it in GitHub Desktop.
Calculate Position
function calcBgPosition(index, nRows, nCols, nFrames, width, height) {
var i = index % nFrames;
var x = 0,
y = 0;
x = (i % nCols) * width * -1;
y = Math.floor(i / (nCols)) * height * -1;
return x + 'px ' + y + 'px';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment