Twitter Bootstrap modal: How to remove Slide down effect

前端 未结 16 2166
野趣味
野趣味 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:17

    I solved this by overriding the default .modal.fade styles in my own LESS stylesheet:

    .modal {
      &.fade {
        .transition(e('opacity .3s linear'));
        top: 50%;
      }
      &.fade.in { top: 50%; }
    }
    

    This keeps the fade in / fade out animation but removes the slide up / slide down animation.

提交回复
热议问题