Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Flickity 插件有疑问。我想将这个与 svgLoader 插件混合使用。滑块动画无法正常工作,因为您需要调整窗口大小以刷新 flickity 插件。你可以在这里试试:http: //thibaut-lalanne.com/ Thx
您可以随时手动刷新滑块。
yourFlickitySlider.resize();
调整轮播的大小并重新定位单元格,如下所示:
// jQuery var $carousel = $('.carousel').flickity() $carousel.flickity('resize') // vanilla JS var flkty = new Flickity('.carousel'); flkty.resize()
示例参见:https ://flickity.metafizzy.co/api.html#resize