Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable modal animation on angular ui boostrap modal

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?

like image 805
AlfaTeK Avatar asked Dec 08 '25 19:12

AlfaTeK


1 Answers

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

like image 106
Harutyun Abgaryan Avatar answered Dec 10 '25 12:12

Harutyun Abgaryan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!