Fixed size of Flexslider

前端 未结 5 2119
误落风尘
误落风尘 2021-02-04 03:40

I\'m using Flexslider to pull product images of varying sizes from an API. I\'ve been throwing them into Flexslider\'s

    , but these varying image sizes don
5条回答
  •  情话喂你
    2021-02-04 04:12

    Change the width via script say your width to be 400

    $('.flex_up').flexslider({
        animation: "slide",
        animationLoop: false,
        itemWidth: 400,
        itemMargin: 5,
    }); 
    

提交回复
热议问题