似乎在Firefox的CSS動畫像素化元素的邊緣:火狐動漫硬件加速像素化邊緣
這裏是一個縮小的情況下 -
.test {
width: 100px;
height: 100px;
border-radius: 0 0 14px 14px;
left: 150px;
top: 150px;
background-color: black;
-webkit-animation: move 4s ease 0ms both infinite;
-moz-animation: move 4s ease 0ms both infinite;
}
@-moz-keyframes move {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(10deg); }
}
@-webkit-keyframes move {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(10deg); }
}
<div class="test"></div>
這看起來罰款webkit,但在Firefox中廢話...任何人有任何想法?
發現它在Firefox中的錯誤。該錯誤已提交。 – Fred