要在懸停時在影像上實現所需的旋轉或旋轉效果,可以將CSS 與特定屬性和過渡結合使用。實作方式如下:
<code class="css">img { border-radius: 50%; transition: transform .7s ease-in-out; } img:hover { transform: rotate(360deg); }</code>
在提供的HTML 程式碼中,每個影像元素都使用上述CSS 樣式進行修改:
<code class="html"><img src="http://i.imgur.com/3DWAbmN.jpg" /> <img src="https://i.sstatic.net/BLkKe.jpg" width="100" height="100" /></code>
此CSS 實作允許當滑鼠懸停停在影像上時影像圍繞其中心平滑旋轉。
以上是如何使用 CSS 建立懸停時圖片旋轉或旋轉效果?的詳細內容。更多資訊請關注PHP中文網其他相關文章!