在 Web 開發中,在滑鼠懸停時對圖像應用縮放效果是常見的設計元素。讓我們來探索使用 CSS3 變換的解決方案。
CSS3 變換屬性和 scale() 函數允許對圖像進行縮放效果。下面是一個程式碼片段:
HTML:
<div class="thumbnail"> <div class="image"> <img src="image.jpg" alt="Image"> </div> </div>
CSS:
.thumbnail { width: 320px; height: 240px; } .image { width: 100%; height: 100%; } .image img { transition: all 1s ease; } .image:hover img { transform: scale(1.25); }
CSS:
<div class="thumbnail"> <div class="image"> <img src="https://placeimg.com/320/240/nature" alt="Image"> </div> </div> <style> .thumbnail { width: 320px; height: 240px; } .image { width: 100%; height: 100%; } .image img { transition: all 1s ease; } .image:hover img { transform: scale(1.25); } </style>
以上是如何使用 CSS 建立懸停圖片縮放效果?的詳細內容。更多資訊請關注PHP中文網其他相關文章!