-3
我想問一下,在這裏如何才能達到懸浮效果?我的意思是當你懸停圖像的時候。 Link to a page with desired effect如何實現縮放效果?
我想問一下,在這裏如何才能達到懸浮效果?我的意思是當你懸停圖像的時候。 Link to a page with desired effect如何實現縮放效果?
您可以使用以下屬性:
.item:hover img {
-moz-transform: scale(2.0);
-webkit-transform: scale(2.0);
transform: scale(2.0);
}
這將使放大效果的圖像上時,它懸停在。 您可以改變參數以達到所需的效果。
你可以看看這個,它類似於你想要的東西:
div {
height: 100px;
width: 100px;
overflow: hidden;
position: relative;
}
p {
background-color: black;
text-align: center;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
color: white;
line-height: 100px;
}
img:hover {
-moz-transform: scale(2.0);
-webkit-transform: scale(2.0);
transform: scale(2.0);
}
img {
height:100px;
width: 100px;
transition: all .2s ease-in-out;
opacity: 0.5;
}
<div>
<p>Text</p>
<img src="https://placeimg.com/640/480/any">
</div>
好吧,這是偉大的:d,我怎麼可以添加一個文本?例如懸停部分的「lorem ipsum」?就像這個頁面:) – Atomix
@Atomix更新了文本的代碼 – Masoud