3

I'm using Angular UI Bootstrap modal window that has a small animation when the modal window appears. The docs don't seem to have an option to disable this animation.

How can I disable that animation when modal opens?

AlfaTeK
  • 7,487
  • 14
  • 49
  • 90
  • 2
    possible duplicate of [Turn off animation, modal, angular-ui](http://stackoverflow.com/questions/18873428/turn-off-animation-modal-angular-ui) – AlfaTeK Oct 14 '14 at 18:51

1 Answers1

5

Use this

.modal.fade {
  opacity: 1;
}

.modal.fade .modal-dialog, .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

See this link

Community
  • 1
  • 1
Harutyun Abgaryan
  • 2,013
  • 1
  • 12
  • 15