我想使用CSS3轉換爲CSS clip
設置動畫,但沒有成功。圖像只是剪輯而沒有轉換。動畫CSS剪輯
我錯過了什麼?
#clipped {
position:absolute;
width: auto;
clip: rect(100, 100, 100, 100);
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
#clipped:hover {
clip: rect(50px, 200px, 200px, 0);
}