0
我有2張圖像。開始時有一個背景圖像,但是在圖像上的特定區域懸停時,我想將當前背景圖像更改爲新的背景圖像。怎麼做?? 目前懸停發生在圖像的整個區域。如何指定懸停應該發生的圖像的特定尺寸?將鼠標懸停在當前背景圖像的特定部分上時更改背景圖像
.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'風格? –