Thibaut
Thibaut

Reputation: 97

How refresh Flickity plugin?

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

Upvotes: 4

Views: 9267

Answers (2)

Julix
Julix

Reputation: 627

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

Upvotes: 4

Mario
Mario

Reputation: 8300

You can manually refresh the slider anytime.

yourFlickitySlider.resize();

Upvotes: 2

Related Questions