HTML 学习笔记 CSS3(Animation)
CSS3动画: 通过CSS3 我们能够创建动画 这可以在许多网页中取代动画图片 Flash动画 以及JavaScript。 CSS3 @keyframes 规则 如需在 CSS3 中创建动画,您需要学习 @keyframes 规则。 @keyframes 规则用于创建动画。在 @keyframes 中规定某项 CSS 样式,就能创建由当前样式逐渐改为新样式的动画效果。 同样的先看一个例子: <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #animationDemo { width: 100px; height: 100px; background: red; position: relative; } #animationDemo:hover { animation: myAnimation 5s; } @keyframes myAnimation{ 0%{background: red; left: 0px; top: 0px; border-radius: 0px;} 25% {background: yellow; left: 200px; top: 0px; border-radius: 25px;} 50% {background: blue; left: