2

答え:background-attachment


----- JSBin の例----


答えは、使用することですbackground-attachment

スクリーンショット


元の質問

背景に「透けて見える」モーダルを表示したいプロジェクトに取り組んでいますが、モーダルパネルの外側はすべてわずかにマスクされています。

で正常に使用できborder: 10000px rgba(0,0,0,0.3)ましborder-radius: 10010pxたが、これはハックであり、モーダルを a で概説することはできませんbox-shadow

これを行うための標準的な方法はありますか?透明度フィルターのグラデーションを画像に適用する方法を考えることができれば、ボーナス ポイントです。

4

2 に答える 2

2

ここで得た最良のオプションは、中央の行に 3 つの列が含まれ、(中央の行の) 上下の行と左右の列の背景が暗くなる 3 行を持つことだと思います。

$(function() {
  $('button').click(function() {
    tpl = '<div class="modal-reverse-container"><div class="r1"></div><div class="r2"><div class="c1"></div><div class="c2"></div><div class="c3"></div></div><div class="r3"></div></div>'
    $('body').append($(tpl));
    $('.modal-reverse-container').width($(document).width());
    $('.modal-reverse-container').height($(document).height());
    $('.modal-reverse-container r1, .modal-reverse-container r2').height($(document).height());
  });
  $(document).on('click', '.modal-reverse-container', function() {
    $(this).remove();
  });
});
td {
  text-align: center;
  background: red;
}
.modal-reverse-container {
  position: absolute;
  top: 0;
  left: 0;
}
.modal-reverse-container .r1, .modal-reverse-container .r2, .modal-reverse-container .r3 {
  height: 33%;
}
.modal-reverse-container .r1, .modal-reverse-container .r3 {
  background: rgba(0, 0, 0, 0.7);
}
.modal-reverse-container .r2 .c1, .modal-reverse-container .r2 .c2, .modal-reverse-container .r2 .c3 {
  width: 33%;
  height: 100%;
  float: left;
}
.modal-reverse-container .r2 .c3 {
  float: right;
}
.modal-reverse-container .r2 .c1, .modal-reverse-container .r2 .c3 {
  background: rgba(0, 0, 0, 0.7);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table width="100%">
  <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
</table>
<img src="https://dummyimage.com/600x400/d950d9/fff" />
<div>
  Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
</div>
<button>Set reverse-modal</button>

于 2016-10-13T01:35:42.310 に答える
1

スクリーンショット

---- JSBin の例----


答えは、使用することですbackground-attachment

background-attachment: fixed;
background-size: cover;
background-position: center center;
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(http://imgur.com/oVaQJ8F.png);

.modal-backdrop {
    background: url(myurl.png) center center / cover no-repeat fixed
}

.modal-panel {
    background: url(myurl.png) center center / cover no-repeat fixed
}

背景とモーダルがデフォルトで同じビューポートを共有できるようにするための最良の値はfixed(すべてのデバイスが固定をサポートしているわけではありません)XY (0, 0)

次に、background-sizeパーセンテージまたはcover

速記を使用background:する場合は、必ず a を使用して金額/を区切りますbackground-positionbackground-scale


古いデバイスでバグに遭遇したのでlocal、手動で計算leftXしたものを使用して、ビューポートでtopY背景とモーダル パネルを並べました。background-position(0, 0)

次に、両方の画像を同じパーセンテージでスケーリングして、画面をカバーしました

グラデーション、クレジットも使用しました-背景画像を暗くする方法

于 2016-10-18T06:02:28.547 に答える