how to make colorbox responsive

前端 未结 16 1084
情歌与酒
情歌与酒 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:46

    A solution I found on the Drupal site uses Colorbox's OFF function:

    if (window.matchMedia) {
        // Establishing media check
        width700Check = window.matchMedia("(max-width: 700px)");
        if (width700Check.matches){
            $.colorbox.remove();
        }
    }
    

    You would need to re-initiate colorbox over a certain window size.

提交回复
热议问题