Y
Y
Yustas Alexu2016-08-16 12:19:50
Bootstrap
Yustas Alexu, 2016-08-16 12:19:50

How to make the modal window in Bootstrap 3 slide out to the right instead of the top?

I use angular-ui and the modal window in it always leaves from above. How can you change the animation?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
Y
Yustas Alexu, 2016-08-16
@Yuxus

After a long googling in English, I found a suitable answer:

.modal.fade:not(.in) .modal-dialog {
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
}

K
kn1ght_t, 2016-08-16
@kn1ght_t

.modal.fade .modal-dialog {
transform: translate(25%, 0);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question