There seems to be a jank between each sprite when doing this
var canvidControl = canvid({
selector : '.video',
videos: {
clip1: { src: 'clip-1.min.jpg', frames: 32, cols: 6, fps: 30, loops: 1, onEnd: function(){
canvidControl.play('clip2');
}},
clip2: { src: 'clip-2.min.jpg', frames: 32, cols: 6, fps: 30, loops: 1, onEnd: function(){
canvidControl.play('clip3');
}},
clip3: { src: 'clip-3.min.jpg', frames: 32, cols: 6, fps: 30, loops: 1},
},
width: 640,
height: 360,
loaded: function() {
canvidControl.play('clip1');
}
});
There seems to be a jank between each sprite when doing this