我的应用程序中有这个模态窗口,这很好用
<div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
但是当模态出现时,这会显示在我的窗口顶部,我想要显示在底部
该应用程序是一个joomla 3.0!我使用了Meet Gavern
的模板任何想法?
答案 0 :(得分:0)
我找到了解决方案
我在Bootstrap中修改了de css
.modal.fade {
top:-25%;
-webkit-transition:opacity .3s linear, bottom .3s ease-out;
-moz-transition:opacity .3s linear, bottom .3s ease-out;
-ms-transition:opacity .3s linear, bottom .3s ease-out;
-o-transition:opacity .3s linear, bottom .3s ease-out;
transition:opacity .3s linear, bottom .3s ease-out;
}