z-index 20 のコンテンツをクリックすると、携帯電話で z-index 1 のものが選択されます。
画像には両方のスクリーン ショットがあります。画像の右側の部分は、私の問題を説明するためのものです。そのため、白灰色の div はコンテンツ div の背後にあります。
誰か救出してくれませんか。
関連する CSS ファイル:
#content {
background: #000000;
background: url(../img/WireFrame_test.png) center center no-repeat;
box-shadow: 0 0 15px 15px #222222;
overflow-x: hidden;
z-index: 20;
}
.snapjs-right .snap-drawer-right {
display: block;
z-index: 10;
}
.snapjs-right .snap-drawer-left {
display: block;
right: 0;
left: auto;
z-index: 1;
}
要求された関連 HTML スクリプトとして:
<body>
<div class="snap-drawers" id="leftid">
...
<div class="snap-drawer snap-drawer-right overthrow">
<div>
<h3>Questions</h3>
<div class="demo-social">
</div>
<h4>Java</h4>
<ul>
<li><a href="noDrag.html">What is Java?</a></li>
<li><a href="noDrag.html">Uses of Inheritence?</a></li>
...
</div>
</div>
<div id="content" class="snap-content">
my content goes here
</div>
</div>
</body>