0

クリックするとモーダルが開きますが、モーダルが開くと背景色が黒くなります。それに伴い、黄色い点々が出現。オーバーレイに黄色い点を表示したくありません。

http://jsfiddle.net/y88WX/18/embedded/result/

<nav class="da-dots"><span></span><span></span><span></span></nav>

.da-dots {
width: 100%;
position: absolute;
text-align: center;
left: 0px;
bottom: 20px;
z-index: 2000;
-moz-user-select: none;
-webkit-user-select: none;
}
4

1 に答える 1

0

.da-dots の z-index を 2000 から 100 に変更します (または任意の値ですが、レイヤーの値よりも低くする必要があります)。

ルールは style2.css で定義されています。
提案 : style2.css ファイルの z-index を変更する必要があります。

.da-dots {
    -moz-user-select: none;
    bottom: 20px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 2000; /* change to 100 */
}

style2.css を編集できない場合は、本体でこれを定義できます。

<style>
.da-dots { 
    z-index: 100 !important; 
    /* You can remove !important if you able to edit style2.css*/
}
</style>

http://jsfiddle.net/y88WX/21/embedded/result/

于 2013-02-27T18:47:20.283 に答える