1
私のウェブサイトに画像のセクションがあり、画像をクリックするとウィンドウサイズモーダルダイアログが開きます。しかし、問題は私のモーダルに2つの垂直スクロールバーがあることです一方、私はちょうど表示されたい。 これに関して他のスタックソリューションを既に試していたが、すべてがうまくいかなかった。続きブートストラップモーダルダイアログの2つの垂直スクロールバー
はモーダルのスクリーンショットです:
そして、ここでは、コードです:
html,
body {
background: url(../img/stars-bg.jpg) no-repeat fixed;
background-size: cover;
transform-style: preserve-3d;
overflow-x: hidden;
}
/*Portfolio css*/
section h2 {
margin: 0;
font-size: 3em;
color: #e59390;
}
hr.star-primary {
border-color: #e59390;
}
#portfolio img {
vertical-align: middle;
width: 100%;
}
#portfolio .portfolio-item .portfolio-link .caption {
background: #E0C6C5;
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: all ease .5s;
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 0.9;
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
color: #e59390;
}
.portfolio-modal strong > a {
color: #e59390;
}
.portfolio-modal button.btn-default {
background-color: #e59390;
color: #fff;
border-color: #e59390;
}
.portfolio-modal button.btn-default:hover {
background-color: #896981;
color: #fff;
border-color: #896981;
}
<div class="portfolio-modal modal fade" id="portfolioModal15" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Coming soon</h2>
<hr class="star-primary">
<img src="img/portfolio/coming_soon11.png" class="img-responsive img-centered" alt="">
<p>Currently in progress ...</p>
<ul class="list-inline item-details">
<li>Client:
<strong><a href="http://startbootstrap.com">None</a>
</strong>
</li>
<li>Date:
<strong><a href="http://startbootstrap.com">None</a>
</strong>
</li>
<li>Service:
<strong><a href="http://startbootstrap.com">None</a>
</strong>
</li>
</ul>
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
私を助けてください。ありがとうございました!
ちょっと!応答のためにありがとう:)しかし、この保存スタイルのプロパティを削除した後も、私は二重スクロールを表示しています。また、私のモーダルを引き起こすためにボタンを使用したくありません。 @Jyoti Pathania –
デモの目的にのみ使用される任意の要素、ボタンをクリックすると、モーダルを起動できます。コードエディタ(codepen、jsfiddle)でコードを共有できます。 –
そこに行く... https://jsfiddle.net/#&togetherjs=EJ9KqMFqwb @Jyoti Pathani –