how to make colorbox responsive

前端 未结 16 1083
情歌与酒
情歌与酒 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条回答
  •  失恋的感觉
    2021-01-30 13:51

    Answer from owner of colorbox.

    window.addEventListener("orientationchange", function() {
    if($('#cboxOverlay').is(':visible'){
        $.colorbox.load(true);
    }
    }, false);
    

提交回复
热议问题