Style animation 属性
使用速记属性改变 <div> 元素的动画:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style> #myDIV { width: 100px; height: 100px; background: red; position: relative; animation: mymove 1s infinite; -webkit-animation: mymove 1s infinite; /*Safari 和 Chrome*/ } @keyframes mymove { from { left: 0px; } to { left: 200px; } } @-webkit-keyframes mymove { /*Safari 和 Chrome*/ from { left: 0px; } to { left: 200px; } } @keyframes mynewmove { from { top: 0px; } to { top: 200px; } } @-webkit-keyframes mynewmove { /*Safari 和 Chrome*/ from { top: 0px; } to { top: 200px; } } </style> </head> <body> <p>点击“尝试一下”按钮改变 animation 属性的值。</p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction() { document.getElementById("myDIV").style.animation = "mynewmove 4s 2"; document.getElementById("myDIV").style.WebkitAnimation = "mynewmove 4s 2"; // 针对 Chrome 和 Safari 的代码 } </script> <p><strong>注意:</strong>Internet Explorer 9 及其之前的版本不支持 animation 属性。</p> <div id="myDIV"></div> </body> </html>
定义和用法
animation 属性是六个动画属性的速记属性:
animationName
animationDuration
animationTimingFunction
animationDelay
animationIterationCount
animationDirection.
注意:总是规定 animationDuration 属性,否则持续时间为 0,将不播放动画。
浏览器支持
Internet Explorer 10、Firefox 和 Opera 支持 animation 属性。
Safari 和 Chrome 支持另一个可替代该属性的属性,即 WebkitAnimation 属性。
注意:Internet Explorer 9 及其之前的版本不支持 animation 属性。
语法
返回 animation 属性:
object.style.animation
设置 animation 属性:
object.style.animation = "name duration timingFunction delay iterationCount direction fillMode playState"
属性值
值 | 描述 |
---|---|
animationName | 指定要绑定到选择器的关键帧的名称。 |
animationDuration | 规定动画完成需花费的秒数或毫秒数。 |
animationTimingFunction | 指定动画的速度曲线。 |
animationDelay | 规定动画开始的延迟时间。 |
animationIterationCount | 规定动画的播放次数。 |
animationDirection | 规定是否循环交替反向播放动画。 |
animationFillMode | 规定当动画不播放时(当动画完成时,或当动画有一个延迟未开始播放时),要应用到元素的样式。 |
animationPlayState | 规定动画是运行的还是暂停的。 |
initial | 设置该属性为它的默认值。请参阅 initial。 |
inherit | 从父元素继承该属性。请参阅 inherit。 |
技术细节
默认值: | none 0 ease 0 1 normal none running |
---|---|
返回值: | 字符串,表示元素的 animation 属性。 |
CSS 版本 | CSS3 |
相关文章
CSS 参考手册:animation 属性