CSS属性,并列出是否支持CSS动画: https://developer.mozilla.org/zh-CN/docs/Web/CSS/CSS_animated_properties 自己做一个小结~ [css] .ball { animation-name: ballmove; animation-duration: 2s; animation-timing-function: ease-in-out; animation-iteration-count: 1; animation-delay: 1s; animation-fill-mode: both; } @keyframes ballmove { 0% { transform: translateX(100px) rotate(0); } 20% { transform: translateX(-10px) rotate(-0.5turn); } 100% { transform: translateX(450px) rotate(2turn); } } [/css] W3C目前定义的简写顺序是这样的: [css] =