0

我的应用程序中有这个模态窗口,这个工作正常

 <div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">

但是当模态出现时,它出现在我的窗口顶部,我想出现在底部

该应用程序是 joomla 3.0!我使用了Meet Gavern的模板

任何想法?

4

1 回答 1

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;
}
于 2013-04-16T11:04:26.867 回答