Can Fancybox be responsive only horizontally for tall content?

前端 未结 1 674
执念已碎
执念已碎 2020-11-28 17:02

I have a site with some very tall images. I\'d like for these images to respond in a responsive way horizontally, but not vertically. If they conform to the height of the br

相关标签:
1条回答
  • 2020-11-28 17:31

    Try combining the fitToView and maxWidth API options like :

    $('.thumbs_small').fancybox({
        openEffect: 'elastic',
        closeEffect: 'elastic',
        prevEffect: 'fade',
        nextEffect: 'fade',
        fitToView: false, // images won't be scaled to fit to browser's height
        maxWidth: "90%" // images won't exceed the browser's width
    });
    

    Check JSFIDDLE

    0 讨论(0)
提交回复
热议问题