有谁知道如何让 Twitter Bootstrap 模式从浏览器窗口顶部平滑滑入到位而不是快速淡入?
我一直在看这个链接,但似乎看不到如何实现滑入过渡而不是淡入淡出。
提前感谢您提供的任何帮助。
我目前有以下CSS:
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop, .modal-backdrop.fade.in {
opacity: 0.8;
}
.modal {
background-clip: padding-box;
background-color: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 6px 6px 6px 6px;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
left: 50%;
margin: -250px 0 0 -280px;
max-height: 500px;
overflow: auto;
position: fixed;
top: 50%;
width: 560px;
z-index: 1050;
}
.modal.fade {
top: -25%;
transition: opacity 0.3s linear 0s, top 0.3s ease-out 0s;
}
.modal.fade.in {
top: 50%;
}