我想爲我的網站有懸停縮放功能,但是,我看過其他示例和我的代碼似乎是相同的,但圖像的尺寸不保持原樣。任何想法可能是什麼問題?放大懸停圖片並保持相同的大小
.imgBox {
display: inline-block;
overflow: hidden !important;
transition: .3s ease-in-out
}
.imgBox {
display: inline-block;
overflow: hidden !important;
transition: .3s ease-in-out
}
.imgBox:hover {
opacity: 0.6;
filter: alpha(opacity=30);
transform: scale(1.3);
}
<div class="large-3 medium-6 small-12 columns">
<h2>Heading 1</h2>
<img class="imgBox" src="http://techmadeplain.com/img/2014/300x200.png" />
<p>Paragraph here</p>
</div>
這是你想要做的嗎? https://jsfiddle.net/2gh0juvx/1/ – Quantastical
是的,謝謝。它的工作 – Dee