4

I have a problem with Flickity plugin. I want to use this one mixed with svgLoader plugin. The slider animation does't work correctly because you need to resize the window for refresh flickity plugin. You can try it here : http://thibaut-lalanne.com/ Thx

Thibaut
  • 97
  • 1
  • 9

2 Answers2

3

Resize the carousel and re-position cells like so:

// jQuery
var $carousel = $('.carousel').flickity()
$carousel.flickity('resize')

// vanilla JS
var flkty = new Flickity('.carousel');
flkty.resize()

For examples see: https://flickity.metafizzy.co/api.html#resize

Julix
  • 598
  • 1
  • 9
  • 20
2

You can manually refresh the slider anytime.

yourFlickitySlider.resize();
Mario
  • 8,253
  • 2
  • 14
  • 29