用 CSS 制作动画背景
使用 @keyframes 创建动画。要使用 CSS 实施背景动画,你可以尝试运行以下代码
示例
<!DOCTYPE html> <html> <head> <style> div { width: 400px; height: 300px; animation: myanim 3s infinite; } @keyframes myanim { 30% { background: green bottom right/50px 50px; } } </style> </head> <body> <div></div> </body> </html>
广告