CSS rotate3d 动画似乎取决于您使用的(现代)浏览器!只需测试代码......
@keyframes KF_Rotate {
0% { transform: rotate3d(0,0,0, 0deg); }
100% { transform: rotate3d(0,1,0,180deg); }
}
.Rotate:hover { animation: KF_Rotate 3s; }
怎么可能?