Twitter Bootstrap modal: How to remove Slide down effect

前端 未结 16 2227
野趣味
野趣味 2020-12-07 11:38

Is there a way to change the Twitter Bootstrap Modal window animation from a slide down effect to a fadeIn or just display without the Slide? I read through the documentatio

16条回答
  •  难免孤独
    2020-12-07 12:24

    The following CSS works for me - Using Bootstrap 3. You need to add this css after boostrap styles -

    .modal.fade .modal-dialog{
        -webkit-transition-property: transform; 
        -webkit-transition-duration:0 ; 
        transition-property: transform; 
        transition-duration:0 ; 
    }
    
    .modal.fade {
       transition: none; 
    }
    

提交回复
热议问题