3
だから私は、私が働いている英雄のレイアウトのための次のような設計だ:私は限り説明と画像に示すように、2つの画像を作るようになった整列2対角の画像
を画像の横に配置し、画像を整列させる。私もclip-pathを調べましたが、残念ながらIEをサポートしていません。そこで私は変換回転オプションを使用してdivを-15度で回転させ、div内の画像を15度回転させました。しかし、私が持っている問題は、ブラウザで拡大縮小すると、整列したままにしなければならない2つの画像の間にギャップが現れることです。 (タブレットとモバイルには別の状態がありますが、これは別の話です)。
私はコードを作成しました:http://codepen.io/adamk22/pen/zBLBALは、CSSを含むレイアウトです。ブラウザの拡大/縮小時に2つの画像をどのように揃えるには?私は何を考慮に入れませんでしたか?
HTML:
<nav> Test Nav </nav>
<div class="container">
<div class="hero-container-top">
<div class="hero-img-box-container">
<div class="hero-img-box-left">
<div class="hero-img-box">
<img class="hero-img" src="http://gyproc.dev/themes/custom/drywall/images/hero_img1.jpeg">
</div>
</div>
</div>
<div class="hero-text-box">
<div class="hero-text-box-cta">
<h1>Hello World</h1>
<h3>Phasellus tempus. Quisque ut nisi. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Morbi mollis tellus ac sapien.</h3>
</div>
</div>
</div>
<div class="hero-container-bottom">
<div class="hero-text-box">
<div class="hero-text-box-cta">
<h2> Hello world</h2>
<h3>Phasellus tempus. Quisque ut nisi. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Morbi mollis tellus ac sapien.</h3>
</div>
</div>
<div class="hero-img-box-container">
<div class="hero-img-box-right">
<div class="hero-img-box">
<img class="hero-img" src="http://gyproc.dev/themes/custom/drywall/images/hero_img2.jpeg">
</div>
</div>
</div>
</div>
</div>
CSS:私は実行可能なソリューションを提供してきました
body {
background: white;
font-family: 'Helvetica', sans-serif;
display: flex;
flex-direction: row;
}
h1 {
font-size: 36px;
line-height: 46px;
font-weight: 100;
}
h2 {
font-size: 24px;
font-weight: 100;
}
h3 {
font-size: 16px;
line-height: 30px;
font-weight: 100;
}
nav {
flex: 0 0 235px;
background: #0569C8;
display: inline-block;
}
.container {
flex: 1 0 auto;
margin: 36px;
overflow: hidden;
background: white;
}
.hero-img-box-container {
width: 60%;
}
.hero-container-top {
display: flex;
flex-direction: row;
height: 767px;
background: white;
.hero-text-box {
width: 40%;
position: relative;
}
.hero-text-box-cta {
position: absolute;
top: 40%;
left: 40%;
transform: translateX(-50%) translateY(-50%);
}
}
.hero-container-bottom {
display: flex;
flex-direction: row;
position: relative;
top: -256px;
height: 751px;
.hero-text-box {
width: 40%;
position: relative;
}
.hero-text-box-cta {
position: absolute;
top: 60%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
}
.hero-img-box-left {
background: lightgrey;
display: inline-block;
height: 1023px;
width: 100%;
transform: rotate(15deg);
transform-origin: top;
position: relative;
top: -165px;
overflow: hidden;
.hero-img-box {
transform: rotate(-15deg);
display: inline-block;
}
.hero-img {
height: 765px;
width: auto;
position: relative;
top: 140px;
left: 10px;
}
}
.hero-img-box-right {
background: lightgrey;
display: inline-block;
height: 1000px;
width: 100%;
transform: rotate(15deg);
transform-origin: top;
position: relative;
overflow: hidden;
right: -21.8%;
top: 0;
.hero-img-box {
transform: rotate(-15deg);
display: inline-block;
}
.hero-img {
height: 628px;
width: auto;
position: relative;
top: 80px;
left: -130px;
}
}
、多分試してみるべきですSVG。 – GolezTrol
@golezTrolはマスクでクリップパスを使用しませんが、これはIEではサポートされていませんか? – adamk22
私はこれを解決するために擬似要素を使用します。 Divsを回転させずに擬似要素の前に回転させ、z-indexプロパティーを使用して可視性を調整します。 –