以下のスクリーンショットのように、3つのスクリーンショット画像を揃えるためにHTMLとCSSをコーディングする方法を理解しようとしています。
ユーザーがウィンドウのサイズを変更すると、左右の画像が中央に向かって移動するか、メイン画像の後ろにきつくなり、メイン画像は常に中央に留まるようになります。
私の開発リンク:http: //leongaban.com/portfolio/athenasweb/
私のCodePenhttp ://codepen.io/leongaban/pen/AwJFt
そして、ヒントや方向性は非常に高く評価されます!:D
HTML
<div class="pattern">
<div class="athena_thumbs">
<div class="first">
<img src="../../images/athena1.jpg"/>
</div>
<div class="second">
<img src="../../images/athena2.jpg"/>
</div>
<div class="third">
<img src="../../images/athena3.jpg"/>
</div>
</div>
</div>
CSS
div.inner .pattern {
position: absolute;
width: 100%;
height: 100%;
background-image:url('http://leongaban.com/images/pattern_diagonal_lines.png');
background-repeat: repeat;
z-index:2;
}
.athena_thumbs {
position: absolute;
max-width: 1000px;
margin: 250px auto 0;
}
.athena_thumbs .first {
position: relative;
margin: 0 auto;
float: left;
left: 25%;
right: 25%;
z-index: 3;
}
.athena_thumbs .second {
position: relative;
float: left;
left: 10%;
right: 5%;
z-index: 2;
}
.athena_thumbs .third {
position: relative;
float: left;
right: 10%;
left: 5%;
z-index: 1;
}