特定の位置にいくつかのボックスメッセージを重ねたい背景画像があります。ボックスを画像に貼り付けて、画像に合わせて拡大縮小し、正確な位置を維持する方法はありますか? おそらく、ボックス内のテキストのフォントサイズもスケーリングする必要があります。
別のメモとして、ボックスに影響を与えずに背景の不透明度を変更するにはどうすればよいですか。
ここに jsfiddle へのリンクがあります: http://jsfiddle.net/zd3CA/
更新パスの特定の部分にボックスを配置して、 結果を次のように表示したい。画像のサイズが変更されると、ボックスが動き回ります。はっきりしなかったようです。
CSS
.back {
height: 85em;
margin-bottom: 5em;
background: url(http://kpv.s3.amazonaws.com/static/img/film.jpg) no-repeat;
background-size: contain;
color: #ffffff;
text-shadow: 1px 1px 1px #000000;
}
.box-message {
max-width: 15em;
min-height: 10em;
box-sizing: border-box;
box-shadow: 1px 0 3px rgba(0, 0, 0, 0.11), -1px 0 3px rgba(0, 0, 0, 0.11);
background: #fff;
color:#000;
padding: 25px 25px 35px 25px;
position: relative;
}
.flow_three {
margin-top: 3em;
margin-left: 5em;
}
.flow_two {
margin-top: 3em;
margin-left: 10em;
}
.flow_text h3 {
color: #1BB366;
font-size: 20px;
}
.flow_text p {
font-size: 18px;
line-height: 25px;
}
.back .container {
position: relative;
z-index: 2;
}
.container {
width: 940px;
}
HTML
<div class="back">
<div class="container">
<div class="box-message flow_text flow_three">
<h3>text</h3>
<p>text txtegv dsf asd fsda f asdf f as df sadf .</p>
</div>
<div class="box-message flow_text flow_two">
<h3>text</h3>
<p>text txtegv dsf asd fsda f asdf f as df sadf .</p>
</div>
</div>
</div>