TinSlide 0.1.19

Height transition

TinSlide does not animate the slider height, but you can instruct it to explicitly update the slider height, and then use your own css transition.

#slider {
  transition: height 200ms cubic-bezier(.48,.01,.21,1);
}
TinSlide(document.getElementById('slider'), {
  useUpdateContainerHeight: true,
  verticallyCenter: true,
  generate: {
    nav: {
      on: false
    }
  }
});