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
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; }