I am using a bootstrap modal that slides in from the right side of the page. I would like to make the modal to slide in slower than its current speed but can't seem to be able to do it. I am only able to change the .fade class, but that only changes the fade opacity and not the slide.How do i make the modal slide in slower?
This is my modal html
<div class="modal fade slide right" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg pull-right" style="margin:0 ;padding:0 !important">
<div class="modal-content">
</div>
</div>
</div><!-- .modal -->
and the css:
.modal.fade:not(.in).right .modal-dialog {
-webkit-transform: translate2d(125%, 0, 0);
transform: translate3d(125%, 0, 0);
}