画像にマウスを乗せるとき、
画像の下端からInstagram(緑色のバー)を表示されるように作成しました。
そこで分からないことは3点あります。
①左に画像・右に文字列を配置するレイアウトを作ったのですが、
HPのサイズによってマウスホバーのサイズが変わるので困ってます。
マウスホバーを画像のサイズにピッタリ(固定)にしたいのですが、どこに修正するべきでしょうか?
※スマホみるときは問題なさそうです。
②左に画像が右に文字列から離れてますが、
それぞれバランスよく(中央寄せ)表示させるためにはどこに修正するべきでしょうか?
③スマホで見るときだけ、テキストを中央に配置するにはどうしたら良いでしょうか?
宜しくお願い致します。
■画像サイズ
ピクセル:水平方向500/垂直方向600
■スマホ
(スマホで見るときテキストを中央に配置したいです)
HTML
1 <section id="Animal" class="Animal"> 2 <div class="container"> 3 4 <div class="section-title" data-aos="fade-up"> 5 <h2>Animal</h2> 6 </div> 7 8 <div class="row"> 9 <div class="col-lg-6" data-aos="fade-right"> 10 11 <div class="member" data-aos="zoom-in"> 12 <div class="member-img"> 13 <img src="assets/img/Animal/Animal.jpg" class="img-fluid" alt=""> 14 15 <div class="social"> 16 <a href=""><i class="bi bi-instagram"></i></a> 17 </div> 18 </div> 19 </div> 20 21 </div> 22 <div class="col-lg-6" data-aos="fade-left"> 23 <div class="content pt-4 pt-lg-0 pl-0 pl-lg-3 "> 24 <h3>Animal</h3> 25 <p class="font-italic">体長4〜5m 体重0,6〜1,9t 地球上で最も背の高い動物です。 <br>キリンはマメ科の木の葉や芽など比較的やわらかい物を食べますが、餌が少ない季節は、木の枝や皮、草なども食べます。</p> 26 </div> 27 </div> 28 </div> 29 30 </div> 31 </section>
CSS
1 2/*Animal Us*/ 3.Animal .section-title h2 { 4 font-size: 70px; 5 font-weight: 700; 6} 7 8 9.Animal .content h3 { 10 font-size: 30px; 11 font-weight: 600; 12} 13 14.Animal .content h4 { 15 font-size: 22px; 16 font-weight: 600; 17} 18 19.Animal .content p:last-child { 20 margin-bottom: 0; 21} 22 23/*Animal image*/ 24.Animal .image { 25 26 background: #fff; 27 padding: 60px 0; 28} 29 30.Anima .member { 31 margin-bottom: 20px; 32 overflow: hidden; 33} 34 35.Animal .member .member-img { 36 position: relative; 37 overflow: hidden; 38 border-radius: 5px; 39} 40 41.Animal .member .social { 42 position: absolute; 43 left: 0; 44 bottom: -40px; 45 right: 0; 46 height: 60px; 47 opacity: 0; 48 transition: bottom ease-in-out 0.4s; 49 background: rgba(124, 197, 118, 0.8); 50 display: flex; 51 align-items: center; 52 justify-content: center; 53} 54 55.Animal .member:hover .social { 56 bottom: 0; 57 opacity: 1; 58 transition: bottom ease-in-out 0.3s; 59} 60 61.Animal .member .social a { 62 transition: color 0.3s; 63 color: rgba(255, 255, 255, 0.7); 64 margin: 10px; 65 display: inline-flex; 66 align-items: center; 67 justify-content: center; 68} 69 70.Animal .member .social a i { 71 line-height: 0; 72} 73 74.Animal .member .social a:hover { 75 color: #fff; 76} 77 78.Animal .member .social i { 79 font-size: 18px; 80 margin: 0 2px; 81} 82
回答1件
あなたの回答
tips
プレビュー