睡不醒的小奇 2021-12-01 21:43 采纳率: 50%
浏览 45
已结题

做了CSS3的动画,但是无效

做了css3动画后,没有反应

img

img

  • 写回答

1条回答 默认 最新

  • CSDN专家-showbo 2021-12-01 21:52
    关注

    不要有空格hover样式li:first-child img:hover

    <style>
        @keyframes anima{
        from{transform:rotate(0deg)}
        to{transform:rotate(360deg)}
        }
        li:first-child img:hover{
        animation-name:anima;
        animation-duration:10s;
        animation-iteration-count:infinite
        }
    </style>
    <ul>
        <li>
            <img src="https://img1.baidu.com/it/u=2897436077,1965736138&fm=26&fmt=auto" />
        </li>
    </ul>
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 12月9日
  • 已采纳回答 12月1日
  • 创建了问题 12月1日