你可能不知道的Animation动画技巧与细节 王永杰 | 2020-7-20 15:58 | 2022-3-11 23:11 | 1,548 | 0 | 开发相关 1900 字 | 16 分钟 引言 在web应用中,前端同学在实现动画效果时往往常用的几种方案: css3 transition / animation - 实现过渡动画 setInterval / setTimeout - 通过设置一个间隔时间来不断的改变图像的位置 requestAnimationFrame - 通过一个回调函数来改变图像位置,由系统来决定这个回调函数的执行… animationCSS3动画
CSS3-animation总结 王永杰 | 2020-2-23 23:47 | 2022-3-11 23:11 | 1,976 | 0 | 开发相关 891 字 | 5 分钟 经常忘记参数的顺序及含义,做个总结方便日后查看 语法结构(简写) animation: name duration timing-function delay iteration-count direction fill-mode; 举例: .dom { animation: wang 3s linear 1s infinite alternate… animationCSS3