<style type="text/css">
div{
width:100px;height: 100px;
animation: carton 5s;
background:red;
-moz-animation: carton 5s; /* Firefox */
-webkit-animation: carton 5s; /* Safari 和 Chrome */
-o-animation: carton 5s; /* Opera */
}
@keyframes carton{
from {background: red;}
to{background: yellow;}
}
@-moz-keyframes carton{/*firefox*/
from {background: red;}
to{background: yellow;}
}
@-webkit-keyframes carton{/* Safari 和 Chrome */
from {background: red;}
to{background: yellow;}
}
@-o-keyframes carton{/* Opera */
from {background: red;}
to{background: yellow;}
}
</style>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
  • 2021-11-07
猜你喜欢
  • 2021-05-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
  • 2021-05-11
  • 2021-10-02
相关资源
相似解决方案