0
リンクをクリックすると、次の部分にスクロールするようにしています。それはうまくスクロールするようですが、リンクをクリックすると常に閉じます。これを回避する方法はありますか?リンクを使用してモーダルを閉じずに記事をスクロールする
.modalDialog {
position: fixed;
width: 100%;
height: 100%;
font-family: 'gothic' !important;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
z-index: 99999;
opacity: 0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.modalDialog:target {
opacity: 1;
pointer-events: auto;
}
.modalDialog > div {
width: 90%;
height: 600px;
position: relative;
top: 12px;
margin: auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
border: solid #2E51A2 2px;
background-color: #1d1d1d;
color: #999;
}
.close {
background: #2E51A2;
color: #fff;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
.close:hover {
color: #000;
}
#content {
width: 60%;
float: right;
font-family: 'gothic' !important;
overflow-y: hidden;
overflow-x: hidden;
height: 396px;
border: 2px solid #2E51A2;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
}
#description {
width: 100%;
height: 396px;
overflow-y: hidden;
overflow-x: hidden;
}
#contentGuide {
width: 100%;
height: 396px;
overflow-y: scroll;
overflow-x: hidden;
}
.contentLink {
display: block;
width: 200px;
height: 50px;
border-left: 2px solid #2E51A2;
border-right: 2px solid #2E51A2;
border-top: 2px solid #2E51A2;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: #1d1d1d;
color: #999;
position: relative;
top: 2px;
right: 4px;
font-size: 16pt;
line-height: 50px;
text-decoration: none;
text-align: center;
float: left;
}
.contentLink:active {
background-color: #2E51A2;
}
#linkContain {
width: 60%;
height: 54px;
float: right;
}
<a href="#openModal">Open Modal</a>
<div id="openModal" class="modalDialog">
<div> <a href="#close" title="Close" class="close">X</a>
<div id="linkContain">
<a href="#description" class="contentLink">About</a><a href="#contentGuide" class="contentLink">Content Guide</a>
</div>
<article id="content">
<article id="description">
Content 1
</article>
<article id="contentGuide">
Content 2
</article>
</article>
</div>
</div>