How to change background Opacity when bootstrap modal is open

后端 未结 14 2133
慢半拍i
慢半拍i 2020-12-24 00:37

I am using bootstrap modal. When modal is open background content opacity is not changed by default. I tried changing in js using

function showModal() {
doc         


        
14条回答
  •  没有蜡笔的小新
    2020-12-24 01:10

    you could utilize bootstrap events:: as

    //when modal opens
    $('#yourModal').on('shown.bs.modal', function (e) {
      $("#pageContent").css({ opacity: 0.5 });
    })
    
    //when modal closes
    $('#yourModal').on('hidden.bs.modal', function (e) {
      $("#pageContent").css({ opacity: 1 });
    })
    

提交回复
热议问题