2017-04-27 20 views
0

画面の幅が682PXの場合、画像の幅は画面に表示されず、消えていきます。明らかに応答性がなく、私はなぜか無知です。私の視差画像は携帯電話/ブートストラップには反応しません

私はまた、私のセクションparrallaxに 'img-responsive'のクラスを含めました。それはどちらもうまくいきませんでした。

<section class="module parallax parallax-1" class="img-responsive"> 
    <div class="container"> 
    <h1>Services</h1> 
    </div> 
</section> 

<section class="module content"> 
    <div class="container"> 
    <h2>Lorem Ipsum Dolor</h2> 
     <p></p> 
    </div> 
</section> 
</div> 

CSS:

section.module:last-child { 
    margin-bottom: 0; 
} 
section.module h2 { 
    margin-bottom: 40px; 
    font-family: "Roboto Slab", serif; 
    font-size: 30px; 
} 
section.module p { 
    margin-bottom: 40px; 
    font-size: 16px; 
    font-weight: 300; 
} 
section.module p:last-child { 
    margin-bottom: 0; 
} 
section.module.content { 
    padding: 40px 0; 
    height: 600px; 
} 
section.module.parallax { 
    height: 600px; 
    background-position: 50% 50%; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-size: cover !important; 
    margin-top: -30px; 
} 
section.module.parallax h1 { 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 48px; 
    line-height: 600px; 
    font-weight: 700; 
    text-align: center; 
    text-transform: uppercase; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
} 

section.module.parallax-1 { 
    background-image: url("../img/rolling.jpg"); 


} 
+0

に求めていた結果、との競合を持っているとしてもsection.module.parallaxクラスを削除し、これはあなたが探しているものでしょうか? https://codepen.io/k185/pen/MmJXOv – k185

+0

はい、まさに!画像は完全に反応します。私のコードから何を変更しましたか?ご協力ありがとうございました。 – Benjamints

+0

答えを作成して、正しいとマークします。 – Benjamints

答えて

0

チェックsection.module.parallax-1の部分、私が追加した背景には、このクラスにしています。それは私がわからない質問

section.module:last-child { 
 
    margin-bottom: 0; 
 
} 
 
section.module h2 { 
 
    margin-bottom: 40px; 
 
    font-family: "Roboto Slab", serif; 
 
    font-size: 30px; 
 
} 
 
section.module p { 
 
    margin-bottom: 40px; 
 
    font-size: 16px; 
 
    font-weight: 300; 
 
} 
 
section.module p:last-child { 
 
    margin-bottom: 0; 
 
} 
 
section.module.content { 
 
    padding: 40px 0; 
 
    height: 600px; 
 
} 
 

 
section.module.parallax h1 { 
 
    color: rgba(255, 255, 255, 0.8); 
 
    font-size: 48px; 
 
    line-height: 600px; 
 
    font-weight: 700; 
 
    text-align: center; 
 
    text-transform: uppercase; 
 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
 
} 
 

 
section.module.parallax-1 { 
 
    background-image: url("https://image.ibb.co/dquSd5/rolling.jpg"); 
 
    background-repeat:no-repeat; 
 
background-size:contain; 
 
    background-size: 100%; 
 
top: 0; 
 

 

 
}
<section class="module parallax parallax-1 img-responsive"> 
 
    <div class="container"> 
 

 
    <h1>Services</h1> 
 
    </div> 
 
</section> 
 

 
<section class="module content"> 
 
    <div class="container"> 
 
    <h2>Lorem Ipsum Dolor</h2> 
 
     <p></p> 
 
    </div> 
 
</section> 
 
</div>

+0

何らかの理由で、私は自分のコードに適用すると、私のイメージはまだ応答していません。 – Benjamints

+0

それは意味をなさない。 – Benjamints

+0

イメージファイルをどこかにアップロードできますか? – k185

関連する問題