how to make colorbox responsive

前端 未结 16 1290
情歌与酒
情歌与酒 2021-01-30 13:35

I am using colorbox in a responsive website.

I have a request : I wish that Colorbox automatically adjusts itself to the size and orientation of the screen / mobile devi

16条回答
  •  Happy的楠姐
    2021-01-30 13:51

    This is the solution that worked for me, I took out the timer stuff that was originally posted by Shabith.

        /**
         * Auto Re-Size function
         */
        function resizeColorBox()
        {
            if (jQuery('#cboxOverlay').is(':visible')) {
                jQuery.colorbox.resize({width:'100%', height:'100%'});
            }
        }
    
        // Resize Colorbox when resizing window or changing mobile device orientation
        jQuery(window).resize(resizeColorBox);
        window.addEventListener("orientationchange", resizeColorBox, false);
    

    Credits go to: shabith

提交回复
热议问题