私は2枚の画像を持っています。最初は1つの背景画像がありますが、画像上の特定の領域にホバリングすると、現在の背景画像を新しい画像に変更したいと考えています。どうやってするか?? 現在、ホバーは画像の全領域で発生します。ホバーが起こるはずの画像の特定の寸法を指定するにはどうすればいいですか?現在の背景画像の特定の部分にホバリングして背景画像を変更します
.bground {
\t width:100%;
\t position:relative;
\t background: url(../img/bg1.jpg) no-repeat top center;
\t -webkit-transition-property: background;
\t -webkit-transition-duration: 2s;
}
.bground:hover {
background: url(../img/bg2.jpg) no-repeat top center;
}
<section id="bground" class="bground">
<div class="display">
<img src="img/logo.png" alt="Logo">
</div>
<div class="page-scroll">
<a href="#about" class="btn btn-circle" style="color:#000000">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</section>
そして、あなたは、それぞれ '持っているブロックのグリッドにまで分割部を意味するものではありません。hover'スタイルを? –