为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

2 回答


@keyframes changecolor{

  0%{

    background: red;

  }

  20%{

    background:blue;

  }

  40%{

    background:orange;

  }

  60%{

    background:green;

  }

  80%{

    background:yellow;

  }

  100%{

    background: red;

  }

}

@-webkit-keyframes changecolor{

     0%{

    background: red;

  }

  20%{

    background:blue;

  }

  40%{

    background:orange;

  }

  60%{

    background:green;

  }

  80%{

    background:yellow;

  }

  100%{

    background: red;

  }

    }

    @-moz-keyframes changecolor{

         0%{

    background: red;

  }

  20%{

    background:blue;

  }

  40%{

    background:orange;

  }

  60%{

    background:green;

  }

  80%{

    background:yellow;

  }

  100%{

    background: red;

  }

        }

div {

  width: 300px;

  height: 200px;

  background: red;

  color:#fff;

  margin: 20px auto;

}

div:hover {

  animation: changecolor 5s ease-out .2s;

  -webkit-animation: changecolor 5s ease-out .2s;

}


0 回复 有任何疑惑可以回复我~

div:hover {

  animation: changecolor 5s ease-out .2s;

 -webkit-animation: changecolor 5s ease-out .2s;

}

需要给animation加前缀


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信