css實現圖片放大效果(鼠標懸浮)

htmlcss <img class="image" src="/images/aaa.jpg" /> csshtml .image { height:50px; /*放大完成時間*/ transition: all 2s; } .image:hover { cursor: crosshair; /*放大倍數*/ transform: scale(5); }
相關文章
相關標籤/搜索