CSS3 animation(动画) 属性 CSS all 属性 CSS3 animation-delay 属性 CSS3 animation(动画) 属性 实例 使用简写属性把 animation 绑定到一个 元素: div { animation:mymove 5s infinite; -webkit-animation:mymove 5s infinite; /* Safari 和 Chrome */ } 试一试 浏览器支持 表格中的数字表示支持该属性的第一个浏览器版本号。 紧跟在 -webkit-, -ms- 或 -moz- 前的数字为支持该前缀属性的第一个浏览器版本号。 属性 animation 43.04.0 -webkit- 10.0 16.05.0 -moz- 9.04.0 -webkit- 30.015.0 -webkit-12.0 -o- 默认值: none 0 ease 0 1 normal 继承: no 版本: CSS3 JavaScript 语法: object.style.animation="mymove 5s infinite" 语法 animation: name duration timing-function delay iteration-count direction fill-mode play-state; 值 说明 animation-name 指定要绑定到选择器的关键帧的名称 animation-duration 动画指定需要多少秒或毫秒完成 animation-timing-function 设置动画将如何完成一个周期 animation-delay 设置动画在启动前的延迟间隔。 animation-iteration-count 定义动画的播放次数。 animation-direction 指定是否应该轮流反向播放动画。 animation-fill-mode 规定当动画不播放时(当动画完成时,或当动画有一个延迟未开始播放时),要应用到元素的样式。 animation-play-state 指定动画是否正在运行或已暂停。 CSS all 属性 CSS3 animation-delay 属性