How to prevent background scrolling when Bootstrap 3 modal open on mobile browsers?

后端 未结 20 1413
抹茶落季
抹茶落季 2020-12-01 01:45

How to prevent background scrolling when Bootstrap 3 modal open on mobile platforms? On desktop browsers the background is prevented from scrolling and works as it should.<

20条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-01 02:04

    This might be a bit like beating a dead horse here.. but, my currently implemented solution on DIY modals via vanilla JS:

    On modal show:

    if (document.body.style.position !== 'fixed') {
        document.body.style.top = -window.scrollY + 'px';
        document.body.style.position = 'fixed';
    }
    

    On modal hide:

    document.body.style.position = '';
    window.scrollTo(0, -parseInt(document.body.style.top, 10));
    document.body.style.top = '';
    

提交回复
热议问题