CSS中經常使用觸碰圖片展開文字的效果,這種效果能夠通過一些簡單的代碼來實現。
.product { position: relative; width: 300px; height: 200px; overflow: hidden; } .product img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transition: transform 0.5s ease; } .product:hover img { transform: scale(1.2); } .product .text { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: rgba(255, 255, 255, 0.8); transition: bottom 0.5s ease; } .product:hover .text { bottom: -50px; }
在上面的代碼中,我們首先定義一個class為product的div,其中包括一張圖片和一個文本框。我們利用CSS的overflow屬性將div設為了固定大小,在鼠標懸浮在商品圖片上的時候,圖片將放大1.2倍。在同時,底部的文本框也會從底部出現,利用CSS的transition屬性賦予它一個緩慢滑動的效果。這樣,用戶就可以通過鼠標的懸浮操作來查看商品的詳細信息。