hello guysイメージとテキストをフェードアウトするホバー効果で構成されたウェブサイトをデザインしています。それはかなりうまく動作していますが、ブラウザウィンドウのサイズを変更すると混乱し、イメージはまだ配置されていますが、ホバーコンテンツはサイズ変更されます。サイズ変更時にイメージと同じサイズにしたいだけです。 この混乱のいずれかの方法は、任意の答えは感謝していただきありがとうございます。イメージのホバーコンテンツのウィンドウサイズ変更を避けるサイズ変更
figure {
overflow: hidden;
margin: 0;
padding: 0;
}
figure:hover img {
transition-duration: 0.8s;
}
figure figcaption {
position: absolute;
top: 0;
left: 20px;
width: 90% !important;
height: 95%;
opacity: 0;
transition-duration: 0.8s;
color: #000;
}
figure:hover figcaption {
opacity: 1;
}
.styleme {
background: #fff;
font-family: playball;
margin-top: 36%;
height: 80px;
}
<div class="row">
<div class="col-lg-6 col-md-4 col-sm-6 col-xs-12">
<div class="thumbnail">
<figure>
<img class="img-responsive" src="macbookair11_lifestyle_20.jpg" />
<figcaption>
<div class="styleme">
<p>This is the Apple macbook and it is pro <i class="fa fa-apple"></i> justclick to purchase</p>
<p>Proccessor: works at 3.14Ghz</p>
<p>Internal Ram: It has a Ram of 8GB <i class="fa fa-bars" aria-hidden="true"></i></p>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
'絶対配置figcaption'される理由のためのおかげで –
を祝福JA?なぜそれがページ上で正常に流れないのですか? –
私は今試してみましたが、ホバーのコンテンツはイメージを完全に残しています。あなたに感謝しています。しかし、まだそれに何か答えがある場合は、感謝感謝@マイケルコーカー –