1. .dish-box{
    2. width: 280px;
    3. height: 280px;
    4. border-radius: 140px;
    5. background-color: #000;
    6. position: relative;
    7. img{
    8. width: 200px;
    9. height: 200px;
    10. border-radius: 100px;
    11. position: absolute;
    12. display: table;
    13. top: 50%;
    14. left: 50%;
    15. transform: translate(-50%,-50%);
    16. animation:discRotate 10s linear infinite;
    17. }
    18. }
    19. 解决方案 : animation重新定义transform
    20. @keyframes discRotate {
    21. from{
    22. transform: translate(-50%, -50%) rotate(0deg)
    23. }to{
    24. transform: translate(-50%, -50%) rotate(360deg)
    25. }
    26. }