toymakerlabs / kenburns

A Jquery gallery featuring CSS3 hardware accelerated pan-and-zoom, Ken Burns style transitions.
161 stars 65 forks source link

Random Slide? #22

Open phocks opened 8 years ago

phocks commented 8 years ago

I'm just wondering how easy or difficult it would be to put in a random slide feature.

I found this shuffle array function, but not sure if it would fit

function shuffle(array) {
  var currentIndex = array.length, temporaryValue, randomIndex;

  // While there remain elements to shuffle...
  while (0 !== currentIndex) {

    // Pick a remaining element...
    randomIndex = Math.floor(Math.random() * currentIndex);
    currentIndex -= 1;

    // And swap it with the current element.
    temporaryValue = array[currentIndex];
    array[currentIndex] = array[randomIndex];
    array[randomIndex] = temporaryValue;
  }

  return array;
}