css3学习小结1
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]
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Easy's Blog!
评论