Bootstrap 3 modal fires and causes page to shift to the left momentarily / browser scroll bar problems

后端 未结 24 1521
遥遥无期
遥遥无期 2020-12-12 12:08

I am working on a site using Bootstrap 3.1.0.

You\'ll notice when the modal window opens, the browser scroll bar just disappears for a split second, then comes back.

24条回答
  •  盖世英雄少女心
    2020-12-12 13:14

    $('body').on('show.bs.modal', function () {
        if ($("body").innerHeight() > $(window).height()) {
            $("body").css("margin-right", "17px");
        }
    }); 
    
    $('body').on('hidden.bs.modal', function (e) {
        $("body").css("margin-right", "0px");
    });
    

    This little fix simulates the scrollbar when the modal is shown, adding a margin-right to the body.

提交回复
热议问题