我试图设置模态的top
当我在#singlePost
模式中设置顶部时,即使没有触发也会显示。
我试过了$('#singlePost').css("top", "1%");
,但它没有用
也在github中试过这个
github
任何解决方案?
<div id="singlePost" class="modal" >
<div class="modal-content">
<div class="row">
<div class="col m9 s12">
<img class="input-field" ng-src="img/cover.jpeg" alt="" >
</div>
</div>
</div>
CSS
#singlePost
{
background-color: #f7f8fa;
width:90%;
height:90% !important;
display: table !important;
}
脚本
$('#singlePost').modal('open', {
dismissible: true,
inDuration: 200,
outDuration: 100
});