スマホサイズの時は問い合わせフォームを正方形の小さな画像と置き換えたいと思っているのですが、そのような表現は可能ですか?
もしくはもともとの問い合わせフォームを消して、新しく画像を表示するのでしょうか?
https://fastcoding.jp/blog/all/frontend/responsive_img/
このサイトを参考にclassにpcとspと入れて見たのですが、スマホ用サイズにしても問い合わせフォームが表示されたままでした。
<section class="header-main"> <div class="header-main-cover"> <div class="logo"> <img class="logo-img" src="img/logo.png" alt="会社ロゴ"> </div> <div class="form"> <a class="pc" href="#">問い合わせフォーム</a> <img class="sp" href="#" src="/img/fire.png"> </div> </div> </section>
@charset "UTF-8"; * { margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; outline: none; font-family: 'Roboto', sans-serif; } .header-main { height: 80px; background-color: black; } .header-main-cover { max-width: 1080px; margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-left: 10px; } .header-main .logo { float: left; } .header-main .logo-img { height: 80px; margin-left: 10px; } .header-main .form { margin-top: 10px; margin-bottom: 10px; margin-right: 10px; background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffcc00), to(#ee8f0b)); background: linear-gradient(to bottom, #ffcc00 50%, #ee8f0b); -webkit-transition: all 0.5s; transition: all 0.5s; width: 200px; border: 2px solid black; border-radius: 8px; } .header-main .form:hover { background-color: #ffcc00; } .header-main .form a { color: rgba(5, 1, 1, 0.842); font-weight: bold; line-height: 60px; display: block; text-align: center; text-decoration: none; } @media screen and (max-width: 640px) { .header-main { height: 80px; background-color: black; } .header-main-cover { max-width: 640px; margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-left: 10px; } .header-main .logo { float: left; } .header-main .logo-img { height: 60px; margin-left: 10px; } .header-main .form { margin-top: 10px; margin-bottom: 10px; margin-right: 10px; background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffcc00), to(#ee8f0b)); background: linear-gradient(to bottom, #ffcc00 50%, #ee8f0b); -webkit-transition: all 0.5s; transition: all 0.5s; width: 200px; border: 2px solid black; border-radius: 8px; } .header-main .form img { width: 20px; } .header-main .form:hover { background-color: #ffcc00; } .header-main .form a { color: rgba(5, 1, 1, 0.842); font-weight: bold; line-height: 60px; display: block; text-align: center; text-decoration: none; } /* パソコンで見たときは"pc"のclassがついた画像が表示される */ .pc { display: none !important; } .sp { display: block !important; } } /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */ .pc { display: block !important; } .sp { display: none !important; } /*# sourceMappingURL=style.css.map */
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/08 15:09