Twitter Bootstrap modal: How to remove Slide down effect

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

    I'm working with bootstrap 3 and the Durandal JS 2 modal plugin. This question was on top of Google results and as none of the answers above is working for me I thought I'd share my solution for future visitors.

    I override the default Bootstrap's Less code with this in my own less:

    .modal {
      &.fade .modal-dialog {
        .translate(0, 0);
        .transition-transform(~"none");
      }
      &.in .modal-dialog { .translate(0, 0)}
    }
    

    That way I am left with only the fade effect, and no slideDown.

提交回复
热议问题