菜单
×
×
正确!
练习为 <div> 元素添加一个持续 2 秒的动画,使颜色从红色变为蓝色。将动画命名为“example”。 <style> div { width: 100px; height: 100px; background-color: red; animation-name: @(7); @(18): 2s; } @keyframes example { from {@(16): red;} to {@(16): blue;} } </style> <body> <div>这是一个 div</div> </body>
<style> div { width: 100px; height: 100px; background-color: red; animation-name: example; animation-duration: 2s; } @keyframes example { from {background-color: red;} to {background-color: blue;} } </style> <body> <div>这是一个 div</div> </body>
<style> div { width: 100px; height: 100px; background-color: red; animation-name: example; animation-duration: 2s; } @keyframes example { from {background: red;} to {background: blue;} } </style> <body> <div>这是一个 div</div> </body>
不正确点击这里重新尝试。 正确!下一题 ❯ |
这将重置所有 138 个练习的分数。
您确定要继续吗?