http://watakuma21.xsrv.jp/sample/
のTOPの画像の位置をいい具合にしたいのですが、これって可能なんですかね??
background-positionで設定するくらいしか知識がなくそれでもうまくハマらないので
その場合画像編集した方がいいでしょうか?
html
1 <section> 2 <div class="stylie"> 3 <div class="stylie1"> 4 <div class="index4_1"> 5 <h1 class="sa sa--scaleUp">aaaaaaa<br>aaaaa</h1> 6 </div> 7 </div> 8 <div class="stylie2"></div> 9 <div class="stylie3"></div> 10 <div class="stylie4"></div> 11 </div> 12 </section>
css
1 .stylie { 2 position: relative; 3 height: 100vh; 4 width: 100vw; 5 } 6 7 .stylie1 { 8 position: absolute; 9 top: 0; 10 width: 100vw; 11 height: 100vh; 12 -webkit-clip-path: polygon(15% 0, 60% 50%, 15% 100%, 0% 100%, 0 51%, 0% 0%); 13 clip-path: polygon(15% 0, 60% 50%, 15% 100%, 0% 100%, 0 51%, 0% 0%); 14 background: #42b4fd; 15 } 16 17 .index4_1 { 18 position: relative; 19 top: 40%; 20 width: 50%; 21 text-align: center; 22 } 23 24 .index4_1 h1 { 25 margin: auto; 26 font-size: 4.6rem; 27 font-weight: 700; 28 font-family: Avenir-Black, Arial, 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", sans-serif; 29 text-align: left; 30 display: inline-block; 31 } 32 33 .stylie2 { 34 position: absolute; 35 top: 0; 36 width: 100vw; 37 height: 100vh; 38 -webkit-clip-path: polygon(60% 50%, 100% 100%, 100% 0); 39 clip-path: polygon(60% 50%, 100% 100%, 100% 0); 40 background: url("../img/top_img001.jpg"); 41 } 42 43 .stylie3 { 44 position: absolute; 45 top: 0; 46 width: 100vw; 47 height: 100vh; 48 -webkit-clip-path: polygon(15% 0, 60% 50%, 100% 0); 49 clip-path: polygon(15% 0, 60% 50%, 100% 0); 50 background: url("../img/top_img002.jpg"); 51 } 52 53 .stylie4 { 54 position: absolute; 55 top: 0; 56 width: 100vw; 57 height: 100vh; 58 -webkit-clip-path: polygon(60% 50%, 15% 100%, 100% 100%); 59 clip-path: polygon(60% 50%, 15% 100%, 100% 100%); 60 background-image: url("../img/top_img003.jpg"); 61 background-position: 20% 24%; 62 }
いい感じというのは具体的にどのような感じでしょうか?
ヘッダーと被せないということでしょうか?